Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi Experts
I not sure what my error is here. I am trying to add the text "by Franchises" to the end of the following Dynamic Title Measure...
DynamicTitle =
""
& CONCATENATEX (
VALUES ( 'Management'[Level4] ),
'Management'[Level4],
"," & CONCATENATE("dsfsf!")
)
Solved! Go to Solution.
Hmm, I don't think you need that last CONCANTENATE and I don't think that you want your delimiter to be ", dsfsf!". Perhaps:
DynamicTitle =
"" &
CONCATENATEX (
VALUES ( 'Management'[Level4] ),
'Management'[Level4],
",")
& "dsfsf!"
CONCATENATEX(<table>, <expression>, [delimiter])
Hmm, I don't think you need that last CONCANTENATE and I don't think that you want your delimiter to be ", dsfsf!". Perhaps:
DynamicTitle =
"" &
CONCATENATEX (
VALUES ( 'Management'[Level4] ),
'Management'[Level4],
",")
& "dsfsf!"
CONCATENATEX(<table>, <expression>, [delimiter])
Thanks Greg see the error, Much Apprecaited for the feedback.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 18 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 53 | |
| 47 | |
| 40 | |
| 38 |