Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
MKPBI_2805
Frequent Visitor

Sorting based on a slicer values selection

Any help for Sorting based on a Slicer Value Section. Slicer will have the Column Names as List of Values used in a Table.

1 ACCEPTED SOLUTION
v-gizhi-msft
Community Support
Community Support

Hi,

 

Here is my test sample:

1.PNG

Please take following steps:

1)Create a slicer table by Enter Data:

2.PNG

2)Try this measure:

Measure = 
SWITCH (
    SELECTEDVALUE ( SlicerTable[Slicer] ),
    "Sort by Date", RANKX (
        ALLSELECTED ( 'Table' ),
        CALCULATE ( MAX ( 'Table'[Date] ) ),
        ,
        ASC,
        DENSE
    ),
    "Sort by Target_Sales", RANKX (
        ALLSELECTED ( 'Table' ),
        CALCULATE ( SUM ( 'Table'[Target_Sales] ) ),
        ,
        ASC,
        DENSE
    ),
    RANKX (
        ALLSELECTED ( 'Table' ),
        CALCULATE ( SUM ( 'Table'[Actual-Sales] ) ),
        ,
        ASC,
        DENSE
    )
)

3)Add this measure to the table visual, and set this visual sort by above measure:

1.jpg

4)When selecting one value in slicer, the result shows:

3.PNG5.PNG6.PNG

See my attached pbix file.

 

Best Regards,

Giotto

View solution in original post

3 REPLIES 3
v-gizhi-msft
Community Support
Community Support

Hi,

 

Here is my test sample:

1.PNG

Please take following steps:

1)Create a slicer table by Enter Data:

2.PNG

2)Try this measure:

Measure = 
SWITCH (
    SELECTEDVALUE ( SlicerTable[Slicer] ),
    "Sort by Date", RANKX (
        ALLSELECTED ( 'Table' ),
        CALCULATE ( MAX ( 'Table'[Date] ) ),
        ,
        ASC,
        DENSE
    ),
    "Sort by Target_Sales", RANKX (
        ALLSELECTED ( 'Table' ),
        CALCULATE ( SUM ( 'Table'[Target_Sales] ) ),
        ,
        ASC,
        DENSE
    ),
    RANKX (
        ALLSELECTED ( 'Table' ),
        CALCULATE ( SUM ( 'Table'[Actual-Sales] ) ),
        ,
        ASC,
        DENSE
    )
)

3)Add this measure to the table visual, and set this visual sort by above measure:

1.jpg

4)When selecting one value in slicer, the result shows:

3.PNG5.PNG6.PNG

See my attached pbix file.

 

Best Regards,

Giotto

amitchandak
Super User
Super User

@MKPBI_2805 , You have the option to choose a sort column, which means it is static. means no option to change.

https://docs.microsoft.com/en-us/power-bi/desktop-sort-by-column

 

What is that you want to achieve.

PattemManohar
Community Champion
Community Champion

@MKPBI_2805  Don't think it is possible (As of today), to make sorting order by expression based (or selection based).

But will be interested in other community members thougts as well on this. 





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.