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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors