Forum Discussion

Ramesh4321's avatar
Ramesh4321
Frequent Visitor
4 years ago
Solved

Week sorting issue

Hi All,

When i am trying to sort the week which contains year also(W1 2021) is not getting sorted properly as shown below

The expected output is W1 2021 W2 2021 W3 2021..... W1 2022 W2 2022 W3 2022....

Actual output is :as shown in above screenshort.

Kindly help me. Thanks in advance.

 

Regards,

Ramesh.

 

  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi Ramesh4321,

     

    You need to create an index column for the [week_year] column. For example.

    Index = YEAR('Table'[Date])*1000+WEEKNUM('Table'[Date])

    Then select the [week_year] column and sort by index.

    If the amount of data is large, you can use the SUMMARIZE function to create a summary table.

    This is the table I used for testing.

    This is the final sorting result.

    Attached PBIX file for reference.

     

    Best Regards,
    Community Support Team_Gao

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly -- How to provide sample data

2 Replies

  • netanel's avatar
    netanel
    Post Prodigy

    Hey Ramesh4321 

     

    There are several options for the solution

    1. Search for three points in the right up corner in the visual "SORT by" and try to sort by week and not by year (assuming that DIM Date is correct or Date column)
    2. Create an index column for the relevant columns and then do Sort by Index

     

    If that does not help please share a file or more details and I will solve it for you

    Goodluck!

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Ramesh4321,

     

    You need to create an index column for the [week_year] column. For example.

    Index = YEAR('Table'[Date])*1000+WEEKNUM('Table'[Date])

    Then select the [week_year] column and sort by index.

    If the amount of data is large, you can use the SUMMARIZE function to create a summary table.

    This is the table I used for testing.

    This is the final sorting result.

    Attached PBIX file for reference.

     

    Best Regards,
    Community Support Team_Gao

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly -- How to provide sample data