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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Datagulf
Responsive Resident
Responsive Resident

Help me correct this DAX Sorting Column

I need help solving this formula. It is a sorting column

Age bins Sort =
SWITCH(TRUE(),
    'Table'[Age Bins] = "0- 30 Days",
    "1",
    'Table'[Age Bins]  = "31- 60 Days",
    "2",
    'Table'[Age Bins]  = "61- 90 Days",
    "3",
    'Table'[Age Bins]  = "> 90 Days",
    "4"
    )



1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

you can save the last condition, by changing it to:

Age bins Sort =
SWITCH(TRUE(),
    'Table'[Age Bins] = "0- 30 Days",
    "1",
    'Table'[Age Bins]  = "31- 60 Days",
    "2",
    'Table'[Age Bins]  = "61- 90 Days",
    "3",
    "4"
    )

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

you can save the last condition, by changing it to:

Age bins Sort =
SWITCH(TRUE(),
    'Table'[Age Bins] = "0- 30 Days",
    "1",
    'Table'[Age Bins]  = "31- 60 Days",
    "2",
    'Table'[Age Bins]  = "61- 90 Days",
    "3",
    "4"
    )
Datagulf
Responsive Resident
Responsive Resident

Works perfectly. Thanks.

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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