Could you explain the VBA code( SELECT tblBin.BinID, tblBin.CreatedDate, Nz([NumberOfItems],0) AS Amount, IIf(IsNull([binID_FK]), "Free", "Occupied") AS Status
FROM tblBin LEFT JOIN qryItemCount ON tblBin.BinID = qryItemCount.BinID_FK). What exactly does Nz([NumberOfItems],0). Why is...