Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
Solved! Go to Solution.
Hi @Anonymous ,
You could create a calculated column:
Column = CONCATENATEX(FILTER('Table','Table'[Category]=EARLIER('Table'[Category])),'Table'[Values],"-")
Best Regards,
Jay
Hi @Anonymous ,
You could create a calculated column:
Column = CONCATENATEX(FILTER('Table','Table'[Category]=EARLIER('Table'[Category])),'Table'[Values],"-")
Best Regards,
Jay
@Anonymous
This is explained here
Pre Concatenate List of Values in Power BI using Power Query - RADACAD
Regards,
Ritesh
@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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
75 | |
63 | |
51 | |
48 |
User | Count |
---|---|
211 | |
86 | |
64 | |
59 | |
56 |