My code works for the "Late" status but it won't show the "Unpaid"?
This is in a query for invoices to set the "Status" of an invoice to paid unpaid or late.Code:Status: IIf(Date()>[qry_Invoices].[DueDate],IIf(IsNull([qry_Invoices].[Payment]),"Late",IIf(IsNull([qry_Invoices].[Payment]),"Unpaid","Paid")))
EDIT: it still won't show "Paid"