The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
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
Solved! Go to Solution.
Hi @DW868990 ,
You can create a measure as below to get it by using CONCATENATEX function , please find the details in the attachment.
Title =
CONCATENATEX (
ALLSELECTED ( 'Table' ),
'Table'[Response],
",",
'Table'[Ranking], ASC
)
Best Regards
Fantastic, working now. thank you
Hi @DW868990 ,
You can create a measure as below to get it by using CONCATENATEX function , please find the details in the attachment.
Title =
CONCATENATEX (
ALLSELECTED ( 'Table' ),
'Table'[Response],
",",
'Table'[Ranking], ASC
)
Best Regards
User | Count |
---|---|
25 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |