Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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.
| User | Count |
|---|---|
| 58 | |
| 44 | |
| 31 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 77 | |
| 66 | |
| 44 | |
| 24 | |
| 22 |