Is it possible to caclulate and format a custom datetime value using Placeholder Labels in a report?
Right now I have the [Current Date] displayed in my report header, but I would also like to show the last refresh date for my data (which in my case is the previous Sunday). Ideally, I would just add another label to the report, and figure out some .NET syntax to display the most recent date that is less than [Current Date] with DayOfWeek = 0 (for Sunday).
This field isn't being used for anything other than some nice-to-know information on the report, so I am thinking a label would be preferable to going back to my cube and adding a 'refresh date' dimension. I'm more DBA than web developer, so I usually end up going all the way back to my sql select and doing the work there, which I know is wrong but at least it gets done.
I understand labels in DBI can accept custom formatting, but not sure about performing a calculation like this. If it is not possible, what would be the correct (read: easiest) way to insert a calculated date on a label?