Forum Discussion
Anonymous
7 years agoNot applicable
Dynamic Title Using Concatenate
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 (
V...
- 7 years ago
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])
Greg_Deckler
7 years agoCommunity Champion
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])
Anonymous
7 years agoNot applicable
Thanks Greg see the error, Much Apprecaited for the feedback.