I would like my report to print “Overdue” only when nothing has been received from A, i.e., the “Date from A” is Null AND the Days Held exceeds the “DaysR”. Below are the expressions I am using. The problem – I am getting “Overdue” for items that have not yet been returned (but don’t exceed the DaysR). Can someone tell me what I am doing wrong.
Date_Rqd_AR: [Date_to_A] + [DaysR]
DaysR2: IIF([Date_to_A]isNull,””, [DaysR])
Days_Held_A: IIF(isNull([Date_from_A]), Date()-[Date_to_A], [Date_from_A]-[Date_to_A])
T: IIF(isNull([Date_from_A]) AND ([Days_Held_A]>[DaysR2]), “OVERDUE”,””)
Date_Rqd_AR: [Date_to_A] + [DaysR]
DaysR2: IIF([Date_to_A]isNull,””, [DaysR])
Days_Held_A: IIF(isNull([Date_from_A]), Date()-[Date_to_A], [Date_from_A]-[Date_to_A])
T: IIF(isNull([Date_from_A]) AND ([Days_Held_A]>[DaysR2]), “OVERDUE”,””)