Forum Discussion
Wordcloud synonyms
- 1 year ago
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.
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.