Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric certified for FREE! 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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 67 | |
| 59 | |
| 46 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 104 | |
| 103 | |
| 37 | |
| 27 | |
| 26 |