Hi,I am looking for a method to default my date parameters in a report.Ideally, I'm looking to run a Month to Date Report. Every morning the report runs on subscription that shows MTD through the end of "yesterday". There seems to be an issue on the 1st of the Month that is messing-up the results.I am looking to replace my start and end date parameters so it works on the first of every month.When it's December 1st and the report runs at 8AM, I want to see the results for entire Month of November.My current Params that are not working as I had hoped are;Start: =DateSerial(Year(Now()), Month(Now()), 1)End: =IIF(DATEPART(DateInterval.Day,Today())=1,Today(),DATEADD(DateInterval.Day,-1,Today()))Thanks for any help/Simplification
↧