Forum Discussion
Jilanibasha
5 years agoFrequent Visitor
Concatinate multiple columns in single column
Hi Gurus, what is the dax formula to display data in below format. Can some one please suggest onthis. Thanks, Jilani
- 5 years ago
Jilanibasha You want UNICHAR(10). So like:
[Column 1] & UNICHAR(10) & [Column 2] & UNICHAR(10) & ...
v-robertq-msft
5 years agoCommunity Support
Hi, Jilanibasha
According to your description, I can roughly understand your requirement, I think you can use the COMBINEVALUES() to perfectly achieve this:
Measure = COMBINEVALUES(" - ",MAX('Table'[Region]),[Amount1],[percentage1])
Then you can create a card visual to place this measure, and you can get what you want.
You can download my test pbix file below
More info about the COMBINEVALUES() function in DAX
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.