Hi Everyone: I would appreciate any help with this problem. I would like to see if an assessment was done, and if not, enter the date it should be done.
Example:
1st Assessment
2nd Assessment: 7 days after 1st
3rd Assessment: 21 days after 1st
etc
I have the following in a query to estimate the next assessment dates, if they are not done.
WeekOneDate: Format(IIf([MaxDate]-[Arrival_Date]<7,([Arrival_Date]+7),"-"[/color red]),"Mmm-dd-yy")
The problem is the "-"[/color red] in the above expression. I cannot get the earliest (least) date from the assessments, in the expression below, since it doesn't find a date. Any suggestions? Sophia
TheLeast: Format(GetLeastDate(Nz([WeekOneDate],0),Nz([WeekSecondDate],0),Nz([MthOneDate],0),Nz([MthlyDate],0)),"Mmm-dd-yy")
Example:
1st Assessment
2nd Assessment: 7 days after 1st
3rd Assessment: 21 days after 1st
etc
I have the following in a query to estimate the next assessment dates, if they are not done.
WeekOneDate: Format(IIf([MaxDate]-[Arrival_Date]<7,([Arrival_Date]+7),"-"[/color red]),"Mmm-dd-yy")
The problem is the "-"[/color red] in the above expression. I cannot get the earliest (least) date from the assessments, in the expression below, since it doesn't find a date. Any suggestions? Sophia
TheLeast: Format(GetLeastDate(Nz([WeekOneDate],0),Nz([WeekSecondDate],0),Nz([MthOneDate],0),Nz([MthlyDate],0)),"Mmm-dd-yy")