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
Optimusprime_25
Resolver I
Resolver I

How to Sort Sub Header in Switch Case in DAX

I have to sort the sub header columns 

values =
var ABC_MTD
var ABC_YTD
var XYZ_MTD
var XYZ_YTD
RETURN
SWITCH(
MAX(Table[Sub_Header]),
"MTD", ABC_MTD,
"YTD", ABC_YTD,
"MTD", XYZ_MTD,
"YTD", XYZ_YTD)
 
Above we are able to create the measure but while pulling this values MTD and YTD values are not correct because it has same value for bpth columns.
 
how to sort or differentiate here without changing the column names. As it should be MTD and YTD for both columns.
1 ACCEPTED SOLUTION
Optimusprime_25
Resolver I
Resolver I

I have found the solution for this topic.

In above case we have sub headers are repeating as MTD and YTD for 8 columns.

What we did was in switch function we have used space for MTD and YTD so that each and every sub ehader will be unique

 

Ex: 1. "MTD", "YTD"

     2. " MTD", " YTD"

     3. "  MTD", "  YTD"

 

We have given extra space so that dax considers each sub header as unique and sort accordingly.

View solution in original post

2 REPLIES 2
Optimusprime_25
Resolver I
Resolver I

I have found the solution for this topic.

In above case we have sub headers are repeating as MTD and YTD for 8 columns.

What we did was in switch function we have used space for MTD and YTD so that each and every sub ehader will be unique

 

Ex: 1. "MTD", "YTD"

     2. " MTD", " YTD"

     3. "  MTD", "  YTD"

 

We have given extra space so that dax considers each sub header as unique and sort accordingly.

amitchandak
Super User
Super User

@Optimusprime_25 , The information you have provided is not making the problem clear to me. Can you please explain with an example?

refer if my blog on a similar topic can help

 

https://medium.com/chandakamit/power-bi-when-i-felt-lazy-and-i-needed-too-many-measures-ed8de20d9f79


Appreciate your Kudos.


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.