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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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