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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Dynamic title sorting

I use the following measure to have a dynamic title based on selected filters, and it works fine, but the order is not correct. When I select several values in the year filter, it does not appear correctly. It shows as year: 2020, 2018, 2019. how can I show it in the right order?

 

Selected Filters  = var _Year= IF(ISFILTERED(table[year]),"| Year : " & CONCATENATEx(
VALUES(table[year]),
table[year],
" , ")," ")
var _birthdate = IF(ISFILTERED(table[BirthDate]),"| BirthDate : " & CONCATENATEx(
VALUES(table[BirthDate]),
table[BirthDate],
" , ")," ") return _Year & " "&  _birthdate

 

 
Spoiler
 
Spoiler
 
1 ACCEPTED SOLUTION
DataZoe
Microsoft Employee
Microsoft Employee

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous 

Due to I don't know your data model, and have a test by a sample table and your measure.

My Sample table:

1.png

Your measure result:

2.png

It seems to work well. By default it will order your value by asc.

Could you show me your datas and data model by a sample?

Or you can share your pbix file with me by your Onedrive for Business.

 

Best Regards,

Rico Zhou

 

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

DataZoe
Microsoft Employee
Microsoft Employee

@Anonymous did you see this solution Solved: I want to "Order by" before using CONCATENATEX ...... - Microsoft Power BI Community?

Respectfully,
Zoe Douglas (DataZoe)



Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors