Forum Discussion
Monday through Friday visualization on one report
- 6 years ago
If you want a graph for each day you can make a copy of the graph and set a visual level filter to the day of week (Mon, Wed, Thu, etc). So you would make 5 copies of the graph and set each one to a different week day. The report level filter of on WeekOffset will keep the correct rolling week dispalyed and each of the graphs will update to the selected day in last week when the week changes.
- 6 years ago
You could write a measure like this.
Week Starting = FIRSTDATE ( Dates[Date] )
Then put that somewhere on the page, perhaps in a card so the users would know the time period they are looking at. Because the WeekOffset filter is applied to the whole page this measure will calculate correctly.
Thank you so much, this worked perfectly!
On my totals graph - is there a way to show which specific date it's using to start the rolling week, i.e, Sunday, September 8, 2019?
You could write a measure like this.
Week Starting = FIRSTDATE ( Dates[Date] )
Then put that somewhere on the page, perhaps in a card so the users would know the time period they are looking at. Because the WeekOffset filter is applied to the whole page this measure will calculate correctly.