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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
MariskaP
Frequent Visitor

Wordcloud synonyms

Hi all,

 

I am using the custom visual 'WordCloud 2.3.4.0' by Microsoft, which works very nicely! One thing I am missing here is the option to note synonyms. For example, I am plotting statements in the wordcloud, containing words like 'Products' (3x), 'Product' (4x), 'Produkten' (1x) and 'Produkt (2x)'. In my wordcloud, I only want to see the word 'Products' (10x). Is this a possibility in the current version somehow? 

 

Thanks!

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @MariskaP  -  WordCloud 2.3.4.0 visual in Power BI does not natively support synonyms or word grouping.

If you prefer to keep the transformation in Power BI rather than Power Query, create a calculated column

NormalizedText =
SWITCH(
TRUE(),
'Table'[TextColumn] = "Product", "Products",
'Table'[TextColumn] = "Produkten", "Products",
'Table'[TextColumn] = "Produkt", "Products",
'Table'[TextColumn] = "Products", "Products",
'Table'[TextColumn] // Default case (unchanged)
)

 

Hope this helps, while WordCloud 2.3.4.0 lacks built-in synonym handling, preprocessing the text using DAX gives you full control over text normalization.

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

1 REPLY 1
rajendraongole1
Super User
Super User

Hi @MariskaP  -  WordCloud 2.3.4.0 visual in Power BI does not natively support synonyms or word grouping.

If you prefer to keep the transformation in Power BI rather than Power Query, create a calculated column

NormalizedText =
SWITCH(
TRUE(),
'Table'[TextColumn] = "Product", "Products",
'Table'[TextColumn] = "Produkten", "Products",
'Table'[TextColumn] = "Produkt", "Products",
'Table'[TextColumn] = "Products", "Products",
'Table'[TextColumn] // Default case (unchanged)
)

 

Hope this helps, while WordCloud 2.3.4.0 lacks built-in synonym handling, preprocessing the text using DAX gives you full control over text normalization.

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.