Forum Discussion

sabeensp's avatar
sabeensp
Helper IV
6 years ago
Solved

Slicer Order Alpha Numeric

Hello, I have a table with Column CurrentValues(Text Field) column has over 2000 unique values, I have a slicer on this column. I need to order slicer values as desired in the image below. Numeric f...
  • devenchj's avatar
    6 years ago

    Hello sabeensp ,

     

    you can setup sort order as below 

     

    1. Create 2 new calculated columns in addition to currentvalue column.

     

    NumCheck
    VAR a = value(if(ISERROR(VALUE('Table'[CurrentValue])),"9999",'Table'[CurrentValue]))
    RETURN a
     
    currentvaluecopy = 'Table'[CurrentValue]
     
    2. Now select column currentvaluecopy from Data tab and use "Sort By Column" --> NumCheck
     
    3. Create Slicer using column currentvaluecopy.
     
    Please note, I tried creating sort by column on CurrentValue column but then sort by column is not working, so just duplicated column to use into Slicer.
     
    Please mark solution as Accepted if it helps.
     
    Regards,
    Devendra