Date question

R

ryan.fitzpatrick3

I have a date field, I want to lookback 15 days from today for all
PO's, in the criteria what would I put in there? I know theres a
dateadd is there a datesubstract or something along the lines of that?
It will always be 15 days. Thanks

ryan
 
R

raskew via AccessMonster.com

I have a date field, I want to lookback 15 days from today for all
PO's, in the criteria what would I put in there? I know theres a
dateadd is there a datesubstract or something along the lines of that?
It will always be 15 days. Thanks

ryan
Two examples:

x = date() - 15

x = dateadd("d", -15, date())

HTH - bob
 
Top