Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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:
And here's an example of what I'd like to see, using the 'aging' term:
| Thesaurus term | Final |
| aging | ageing,ripening,senescence,ageing |
Any help would really be appreciated 🙂
Solved! Go to Solution.
This should do the trick:
Measure =
IF(
HASONEVALUE('Table'[Thesaurus term]),
CONCATENATEX('Table','Table'[Final],", ")
)
Proud to be a Super User!
This should do the trick:
Measure =
IF(
HASONEVALUE('Table'[Thesaurus term]),
CONCATENATEX('Table','Table'[Final],", ")
)
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.