stickleprojects Level: Moderator

 Registered: 09-09-2002 Posts: 891
|
Re: Access Query
Hi
The function to use is "DateDiff" this gives you date comparisons in days/years/months/minutes/etc.s
"d" is days, so:
Use DateDiff("d",table.field,now)>30
er..
it might be
DateDiff("d",now,table.fieldname)>30
Hope this helps,
Kieron
____________________________
Build it better, faster, quicker, easier.. then fix it (non-offical MS mission statement)
|