Forum Discussion
Anonymous
9 years agoNot applicable
Creating a "Weekly" Aggregation
I am currently working with a dataset which represents daily performance of a specific aspect of our business. In the image below, I am using my "Date" field on the shared axis. (Formatted as ...
- 9 years ago
Hi Anonymous
You could add this column to your Date/Calender table and add it to the axis of your visual.
Week Starting = DATEADD( 'Dates'[Date], 1-WEEKDAY('Dates'[Date]) ,DAY )
Phil_Seamark
9 years agoMicrosoft Employee
Hi Anonymous
You could add this column to your Date/Calender table and add it to the axis of your visual.
Week Starting = DATEADD(
'Dates'[Date],
1-WEEKDAY('Dates'[Date])
,DAY
)- Anonymous4 years agoNot applicable
Say I wanted to pick a different day how could I do that ?