Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Concatenate values having a same category

Hello, 

 

I would like to concatenate values having the same category by "-"

 

Input : 

CategoryValues
Ared
Aorange
Ayellow
Byellow
Cgreen

 

Expected Output : 

 

CategoryValues
Ared - orange - yellow
Byellow
Cgreen

 

Thanks in advance

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @Anonymous ,

 

You could create a calculated column:

Column = CONCATENATEX(FILTER('Table','Table'[Category]=EARLIER('Table'[Category])),'Table'[Values],"-")

vjaywmsft_0-1653298741027.png

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

3 REPLIES 3
v-jayw-msft
Community Support
Community Support

Hi @Anonymous ,

 

You could create a calculated column:

Column = CONCATENATEX(FILTER('Table','Table'[Category]=EARLIER('Table'[Category])),'Table'[Values],"-")

vjaywmsft_0-1653298741027.png

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
ribisht17
Super User
Super User

@Anonymous 

 

This is explained here

Pre Concatenate List of Values in Power BI using Power Query - RADACAD

 

Regards,

Ritesh

amitchandak
Super User
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

https://www.youtube.com/watch?v=xAh3tz1qo24

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors