Hi,
I have date prompt on prompt page.
For ex:
If I select Oct 1 to Oct 30 on the date prompts ( from date and to date), the repor has to show the data from Nov 1st to Nov 7th.
The query has to take the Todate (Oct 30) and add 7 days to it and gives the results. I tried several ways to add this in detail filters of the query and didnot work. Can someone please help?
Maybe something like this will work for you:
[YourDate] between _add_days( ?ToDate?, 1 ) and _add_days( ?ToDate? , 7 )
Thank you Lynn. Appreciate your help.