Forum Discussion
Anonymous
4 years agoNot applicable
Concatenate values having a same category
Hello,
I would like to concatenate values having the same category by "-"
Input :
| Category | Values |
| A | red |
| A | orange |
| A | yellow |
| B | yellow |
| C | green |
Expected Output :
| Category | Values |
| A | red - orange - yellow |
| B | yellow |
| C | green |
Thanks in advance
- Anonymous4 years ago
Hi Anonymous ,
You could create a calculated column:
Column = CONCATENATEX(FILTER('Table','Table'[Category]=EARLIER('Table'[Category])),'Table'[Values],"-")Best Regards,
Jay
3 Replies
- AnonymousNot applicable
Hi Anonymous ,
You could create a calculated column:
Column = CONCATENATEX(FILTER('Table','Table'[Category]=EARLIER('Table'[Category])),'Table'[Values],"-")Best Regards,
Jay
- amitchandak
Super User
Anonymous , Create a new measure and use that with Category
concatenatex(Table, [Values], " - ")
refer video Power BI Abstract Thesis Episode 72: Concatenate Text- Measure, DAX Table, and Power Query Table
- ribisht17
Super User
Anonymous
This is explained here
Pre Concatenate List of Values in Power BI using Power Query - RADACAD
Regards,
Ritesh