Date Parameter Query

lilmosweet

New member
Local time
Today, 15:13
Joined
Jun 2, 2009
Messages
8
I have a Date Parameter set up in my query for the user to input the start date but I need the result to return only 60 days after the input start date from the user. How do I achieve this in my access query?

Thanks!
 
I have a Date Parameter set up in my query for the user to input the start date but I need the result to return only 60 days after the input start date from the user. How do I achieve this in my access query?

Thanks!

The parameter should be:

>=[Enter Start Date] AND <=DateAdd("d",60,[Enter Start Date])
 
Thanks! You are the best! Have a great weekend!
 

Users who are viewing this thread

Back
Top Bottom