Forum Discussion
em0840
4 years agoFrequent Visitor
Help with Calendar
I have a 2 Year data which is daywise . I would like to present it weekwise but my week dont start From Monday , I want it start from Saturday and end on Friday . What is the easiest way ?
- Anonymous4 years ago
Hi em0840 ,
You can add three calculated columns to realise.
The first column is to get the date of Saturday.
Saturday = IF(WEEKDAY([Date],2)=6,[Date])The second columns is to fill down the date.
FillDown = CALCULATE(LASTNONBLANK('Table'[Saturday],1),FILTER('Table',[Date]<=EARLIER('Table'[Date])))The third column is to rank by the dates. And the result is the week numbers.
WeekNum = RANKX('Table',[FillDown],,ASC,Dense)Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi em0840 ,
You can add three calculated columns to realise.
The first column is to get the date of Saturday.
Saturday = IF(WEEKDAY([Date],2)=6,[Date])
The second columns is to fill down the date.
FillDown = CALCULATE(LASTNONBLANK('Table'[Saturday],1),FILTER('Table',[Date]<=EARLIER('Table'[Date])))
The third column is to rank by the dates. And the result is the week numbers.
WeekNum = RANKX('Table',[FillDown],,ASC,Dense)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.