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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

How to Sort a Columns in a table by only using Slicer?

Hi Everyone, 

 

Requesting you post the solutin or any advice for the below question.

 

TABLE1

EMP IDSALARYSAVINGSEXPENSESTAX PAID
11000010009000500
2500015003500600
315000500010000700
4800024005400350
5900032005700550
675008006700700
760005005500800

 

Slicer 1

Metric (Drop down Silcer)
SALARY
SAVINGS
EXPENSES
TAX PAID

 

Slicer 2

Sort (Radio Button Slicer)
ASC 
DSC

 

Above is the TABLE1 consists of Columns SALARY, SAVINGS, EXPENSES, TAXPAID and there need  two slicers like as above Slicer 1 and Slicer .

 

Now the requirement is if i select one Metric from Metric Slicer Ex. SAVINGS and selected ASC then the SAVINGS Column in the table should sort in Ascending order and if select DSC then it should sort in the Descending Order in the Same table without any Bookmarks. 

 

Finally based on the Selection of Metric in Metric Slicer and Selection of Sort Slicer the Metric Value in the Table should Sort Accordingly.

 

Help me out with  closest solution.

Thanks in Advance.

 

Regards,

Pentakoa

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

You can try this measure

SORT =
SWITCH (
    SELECTEDVALUE ( 'Slicer 2'[Sort] ),
    "ASC",
        SWITCH (
            SELECTEDVALUE ( 'Slicer 1'[Metric] ),
            "EXPENSES", SUMX ( 'TABLE1', [EXPENSESASC] ),
            "SALARY", SUMX ( 'TABLE1', [SALARYASC] ),
            "SAVINGS", SUMX ( 'TABLE1', [SAVINGSASC] ),
            "TAX PAID", SUMX ( 'TABLE1', [TAX PAIDASC] )
        ),
    "DSC",
        SWITCH (
            SELECTEDVALUE ( 'Slicer 1'[Metric] ),
            "EXPENSES", SUMX ( 'TABLE1', [EXPENSESDESC] ),
            "SALARY", SUMX ( 'TABLE1', [SALARYDESC] ),
            "SAVINGS", SUMX ( 'TABLE1', [SAVINGSDESC] ),
            "TAX PAID", SUMX ( 'TABLE1', [TAX PAIDDESC] )
        )
)

8.png

 

 

You can check more details from here.

 

 

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.

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi @Anonymous ,

 

You can try this measure

SORT =
SWITCH (
    SELECTEDVALUE ( 'Slicer 2'[Sort] ),
    "ASC",
        SWITCH (
            SELECTEDVALUE ( 'Slicer 1'[Metric] ),
            "EXPENSES", SUMX ( 'TABLE1', [EXPENSESASC] ),
            "SALARY", SUMX ( 'TABLE1', [SALARYASC] ),
            "SAVINGS", SUMX ( 'TABLE1', [SAVINGSASC] ),
            "TAX PAID", SUMX ( 'TABLE1', [TAX PAIDASC] )
        ),
    "DSC",
        SWITCH (
            SELECTEDVALUE ( 'Slicer 1'[Metric] ),
            "EXPENSES", SUMX ( 'TABLE1', [EXPENSESDESC] ),
            "SALARY", SUMX ( 'TABLE1', [SALARYDESC] ),
            "SAVINGS", SUMX ( 'TABLE1', [SAVINGSDESC] ),
            "TAX PAID", SUMX ( 'TABLE1', [TAX PAIDDESC] )
        )
)

8.png

 

 

You can check more details from here.

 

 

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
Not applicable

Hi @amitchandak Is there any solution for the same without using any Bookmarks?

@Anonymous , I doubt any other place you can control order by.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

No. It should be only in a slicer

Anonymous
Not applicable
amitchandak
Super User
Super User

@Anonymous , Please refer the last page (Sort Using Bookmarks) of the attached file. I tried creating it using bookmarks

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.