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
powerbidevelope
Frequent Visitor

Month and Quarter Incorrect sorting

Hi All,

 

In Our report, we have to display the current User Selection(Slicer Selection) in a Card Visual

 

We have

1. Year Slicer(Single Select)

2. Quarter(Multi Select)

3. Month(Multi Select)

 

When we display the user selection, it is not coming in sorting order.

 

Please help..

 

pbix file:

https://github.com/bodempudi/CodeSnippets/blob/master/PowerBI/Demos/month%20sort%20issue.pbix

sample excel file:

https://github.com/bodempudi/CodeSnippets/blob/master/PowerBI/Demos/date%20sorting%20%20issue.xlsx

 

dax expresion:

User Selection = CONCATENATEX(VALUES(Sheet1[CAL_MTH_NAME]),Sheet1[CAL_MTH_NAME],", ")&"
"&CONCATENATEX(VALUES(Sheet1[CAL_QTR]),Sheet1[CAL_QTR],", ")
month sort issue.PNG

 

Thanks

 

6 REPLIES 6
v-yuta-msft
Community Support
Community Support

@powerbidevelope ,

 

You can add two parameters [order_by_expression] and [order] in concatenatex() function like below:

User Selection = CONCATENATEX(VALUES(Sheet1[CAL_MTH_NAME]),Sheet1[CAL_MTH_NAME],", ", Sheet1[CAL_MTH_NAME], ASC)&"
"&CONCATENATEX(VALUES(Sheet1[CAL_QTR]),Sheet1[CAL_QTR],", ", Sheet1[CAL_QTR], ASC)

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-yuta-msft 

 

thanks for your reploy, your expression is not working.

 

Any help is appreciated..

 

Thanks......

 

Hi @v-yuta-msft @v-yuta-msft 

 

i am just thinking like as we do not have continuous dates, sorting is not working. Is that correct? or any other reasons..

 

Thanks..

 

 

@powerbidevelope ,

 

Have you solved your issue by now? If you have, could you please help mark the correct answer to finish the thread? Your contribution will be much appreciated.

 

Regards,

Jimmy Tao

@powerbidevelope ,

 

Yes, based on my test, concatenatex() will sort by the first charater of the text if the values are not date or number.

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Greg_Deckler
Super User
Super User

So normally you put in a "sort by" column and set your column to sort by that column. 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.