Forum Discussion
Anonymous
7 years agoNot applicable
Card visual with multiple selection slicer
Hi. I want to create a Card where I can see wich elements of a particular slicer are selected but i don´t have a clue on how to do it, so far I can only put a single field selection using this DA...
- 7 years ago
Hi Anonymous,
I think this Measure shoud help.Selected Values =CONCATENATEX(VALUES('Product'[Brand]),'Product'[Brand],"; ")
Hope this helps
Mariusz
Mariusz
7 years agoCommunity Champion
Hi Anonymous
Please see the below
Selected Slicer Values =
VAR s = VALUES('Product'[Brand])
VAR c = COUNTROWS(ALL('Product'[Brand])) = COUNTROWS(s)
RETURN
IF(
c, "All Selected",
CONCATENATEX(
s,
'Product'[Brand],
"; "
)
)Always happy to help.
Mariusz
Anonymous
5 years agoNot applicable
Could you please share sample BI file
Please