Forum Discussion
mocolega
8 years agoNew Member
Create a string with all values of column
Hi! I would like to know if it is possible to transform a column in a string. E.g: Collumn A Value 1 Value 2 Value 3 I need that the result will be something like: "Value 1; Value 2; V...
- 8 years ago
Try this:
Measure = CONCATENATEX(VALUES(Table[Collumn1]),[Collumn1],";")
Greg_Deckler
Community Champion
8 years agoTry this:
Measure = CONCATENATEX(VALUES(Table[Collumn1]),[Collumn1],";")