This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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!
Solved! Go to Solution.
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.
Proud to be a 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.
Proud to be a Super User! | |
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 28 | |
| 25 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 31 | |
| 20 | |
| 19 |