Forum Discussion
thiamhuat2026
3 months agoHelper III
Power BI Questions
I need help in this two cases here: First: I need to remove that dot '.' after the name of the Town_Council selected. It seems I need to enter something and the minimum I can have is a dot, but I w...
- 3 months ago
Hi thiamhuat2026 ,
Since you are using the new card visual you can just turn off the label from the card settings and this will not show in the visualization:
thiamhuat2026
3 months agoHelper III
how does that work, if I want to display more than one selection from a pull-down menu?
MFelix
3 months agoSuper User
Hi thiamhuat2026 ,
Not sure how you have the measure for that specific card but you need to use the concatanex formula something similar to this:
Selected_TC =
CONCATANEX(VALUES(Table[Town_Council]), ",")
This will give you a concatenation of all the selected values with a comma as separator you can do whatever other separator you want and you also have additional parameters for sorting .