Hello,
The query I have below. Is returning records with the Payment Terms for NET 30 are showing as “15-30 Days Past Due”. The NET 30 payment terms should show as “31-60 Days Past Due” and the NET 15 payment terms should show as “15-30 Days Past Due”. I hope I’m explaining myself? Any ideas?
Holly
PaymentStatus: IIf([tbl report and invoices sending]![payment terms]="Due Upon Receipt","Due Upon Receipt Past Due",IIf(Date()-[invoice date sent]>=365,"365 Days Past Due",IIf(Date()-[invoice date sent]>=180,"180 Days Past Due",IIf(Date()-[invoice date sent]>=150,"150 Days Past Due",IIf(Date()-[invoice date sent]>=120,"120 Days Past Due",IIf(Date()-[invoice date sent]>=90,"90 Days Past Due",IIf(Date()-[invoice date sent]>=60 And Date()-[invoice date sent]<90,"61-90 Days Past Due",IIf(Date()-[invoice date sent]>=30 And Date()-[invoice date sent]<60,"31-60 Days Past Due",IIf(Date()-[invoice date sent]>=15 And [invoice date sent]>31,"15-30 Days Past Due","Current")))))))))
The query I have below. Is returning records with the Payment Terms for NET 30 are showing as “15-30 Days Past Due”. The NET 30 payment terms should show as “31-60 Days Past Due” and the NET 15 payment terms should show as “15-30 Days Past Due”. I hope I’m explaining myself? Any ideas?
Holly
PaymentStatus: IIf([tbl report and invoices sending]![payment terms]="Due Upon Receipt","Due Upon Receipt Past Due",IIf(Date()-[invoice date sent]>=365,"365 Days Past Due",IIf(Date()-[invoice date sent]>=180,"180 Days Past Due",IIf(Date()-[invoice date sent]>=150,"150 Days Past Due",IIf(Date()-[invoice date sent]>=120,"120 Days Past Due",IIf(Date()-[invoice date sent]>=90,"90 Days Past Due",IIf(Date()-[invoice date sent]>=60 And Date()-[invoice date sent]<90,"61-90 Days Past Due",IIf(Date()-[invoice date sent]>=30 And Date()-[invoice date sent]<60,"31-60 Days Past Due",IIf(Date()-[invoice date sent]>=15 And [invoice date sent]>31,"15-30 Days Past Due","Current")))))))))