Forum Discussion

em0840's avatar
em0840
Frequent Visitor
4 years ago
Solved

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 ?

  • Anonymous's avatar
    Anonymous
    4 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.

2 Replies