I need the dates between now and the past 14 days.
will this work?
<14 And Date()
I need the dates between now and the past 14 days.
will this work?
<14 And Date()
Last edited by burrina; 02-11-2013 at 01:29 PM. Reason: code
Perhaps you could use the DateDiff() function in the criteria row of a query
If this helped, please click the star at the bottom left of this posting and add to my reputation. Many thanks.
Bob Fitzpatrick
Between (Date()-14) And Date()
I tried this but was wondering how do I write this in an IIF statement.
I want to get a text field going for example:
IIF Between (Date()+7) And Date() THEN "Certification Alert"
Can you assist?
The answer I gave was an answer to be used in the Criteria section of a query, not a calculated field. If you would like to do the same thing in a calculated field, you would do something like:
Code:Expr1: IIF(([SomeDateField] >= Date()) AND ([SomeDateField] <= Date()+7),"Certification Alert","")