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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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.

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

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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