How come when I schedule a report and I use the Last7Days and run it on a Monday at 8:00 AM I don't get the Last Monday's value. Is there a better way, maybe formula that will allow me to grab items from Monday-Sunday every week.
I tried to run the report sunday night and is still not including Sunday. What else should I try , I am about to change my prompt to just add the start date and end date. This will not allow me to schedule it
I have a bit of a problem, the Date field is a number type, 1020523 = 5/23/02. I have formula called
@DATE = WriterDate({DAGENT.UDAY}) to show 5/23/02 on the report. Where should i put the conversion you suggested.
Here is another way to get the records from last weeks
monday to sunday.
(independent of which day in the present week you run the report).
Use this in your record selection formula:
Date({your datefield}) >= (CurrentDate) - DayOfWeek(CurrentDate) -5 and
Date({your datefield}) <= (CurrentDate) - DayOfWeek(CurrentDate) +1
And if you want to show the period in the page header
just use the ToText-function like this:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.