Forum Discussion
Anonymous
7 years agoNot applicable
How to remove leading commas from the concatenated String
Hi Team, I have a concatenated text string like ",176.22.191.10,None,254.255.244.0" . This is a concantenated value comprises of certain values. Customer doesnt want to see the Leading comma at t...
Vvelarde
Community Champion
7 years agoAnonymous
Hi, try with this:
ConcatenatedValues =
CONCATENATEX (
FILTER ( Table1; Table1[Values] <> BLANK () ),
Table1[Values],
","
)
Regards
Victor
Anonymous
7 years agoNot applicable
Thanks Victor ,
I did tried your suggestion and I see an output like this . I am doing some thing wrong , but I am new to PBI.
Measure : ConcatenatedValues =
CONCATENATEX (
FILTER (Query1,Query1[Target IP Address]<> BLANK () ),
Query1[Target IP Address],
","
)