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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
DW868990
Helper IV
Helper IV

Dynamic Order in Title

Hi,

 

I have a dynamic title that shows up to 6 responses per end user selection. The selection is made via a slicer of table like below. 

DW868990_0-1663931561781.png

 

Now i have used CONCATENATEX within the measure of the title so it does show the end user selections, but I need it to show in order of the ranking column above. It seems CONCATENATEX can only be ordered by a measure, not a column, or am i missing something? Thanks in advance.

 

JJ

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @DW868990 ,

You can create a measure as below to get it by using CONCATENATEX function , please find the details in the attachment.

yingyinr_1-1664179685202.png

yingyinr_2-1664179808404.png

Title = 
CONCATENATEX (
    ALLSELECTED ( 'Table' ),
    'Table'[Response],
    ",",
    'Table'[Ranking], ASC
)

yingyinr_3-1664179927964.png

Best Regards

View solution in original post

3 REPLIES 3
DW868990
Helper IV
Helper IV

Fantastic, working now. thank you

Anonymous
Not applicable

Hi @DW868990 ,

You can create a measure as below to get it by using CONCATENATEX function , please find the details in the attachment.

yingyinr_1-1664179685202.png

yingyinr_2-1664179808404.png

Title = 
CONCATENATEX (
    ALLSELECTED ( 'Table' ),
    'Table'[Response],
    ",",
    'Table'[Ranking], ASC
)

yingyinr_3-1664179927964.png

Best Regards

lbendlin
Super User
Super User

works for me

lbendlin_0-1664058171474.png

You probably forgot to specify that you want to sort "Response" by "Ranking"

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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