DateAdd ( interval, number, date ) seems ok but specifically i need to show all dates 30 days from current date (todays date), so that when i run the report I get all records that are coming up!
I believe that either one will resolve the Ops issue, since the original issue was regarsing adding a specific number of days. The main advantage to the DateAdd() Function, is that it provides the flexibility of having intervals other than days.
DateAdd ( interval, number, date ) seems ok but specifically i need to show all dates 30 days from current date (todays date), so that when i run the report I get all records that are coming up!
You already know the Start Date, and DateAdd() can get you the End Date. The SQL Between Function can be used to select records that are in the range that you want.