Good Afternoon,
I am having difficulty writing an expression for a query.
I would like Overdue: to return "Overdue" if the date in [Application-Next] is between current date and current date minus one month, (for example, return any dates between 30 May 2017 through today, 30 June 2017).
Something like the below:
No matter what I try I can't get the syntax right.
Thank you so much for your support.
MCMike
I am having difficulty writing an expression for a query.
I would like Overdue: to return "Overdue" if the date in [Application-Next] is between current date and current date minus one month, (for example, return any dates between 30 May 2017 through today, 30 June 2017).
Something like the below:
Code:
Overdue: IIf([Application-Last]Between Date() And DateAdd("m",-1,Date()), "Overdue")
Thank you so much for your support.
MCMike
Comment