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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply

Grouping strings from duplicate row entries

Hi everyone, I'm hoping someone can help 🙂

I'm attempting to match a list of terms ('Thesaurus term" column) with synonyms ("Final" column). I have my terms and my list of synonyms, but some of the terms are duplicated over more than one row. I'd like to create another column (I can't use power query for this, FYI) or a calculated table that groups all related synonyms into one line for each unique term. Here's my table of data:

MichaelHutchens_0-1619032936807.png


And here's an example of what I'd like to see, using the 'aging' term:

Thesaurus termFinal
agingageing,ripening,senescence,ageing


Any help would really be appreciated 🙂

1 ACCEPTED SOLUTION
ChrisMendoza
Resident Rockstar
Resident Rockstar

This should do the trick:

Measure = 
IF(
    HASONEVALUE('Table'[Thesaurus term]),
    CONCATENATEX('Table','Table'[Final],", ")
)

image.png






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



View solution in original post

2 REPLIES 2
ChrisMendoza
Resident Rockstar
Resident Rockstar

This should do the trick:

Measure = 
IF(
    HASONEVALUE('Table'[Thesaurus term]),
    CONCATENATEX('Table','Table'[Final],", ")
)

image.png






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



Perfect @ChrisMendoza, thank you so much! 🙂

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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