report

lakshmi

New member
Local time
Today, 14:05
Joined
Apr 26, 2000
Messages
7
Need to create a report which will take the current date and add 35 days to it and then run a query that selects all records whose expiration dates fall within 35 days of the date you calculated. Does this make sense?????

Do I need VBA to create this report or can I just use a function???

Thanks! :(
 
Just base the report on a query with the criteria of Between DateAdd("d",35,Date()) And Date() on your Date field
 

Users who are viewing this thread

Back
Top Bottom