Forum Discussion
karelstoel
Advocate I
4 years agoHide when multiple value in slicer are selected
Hello,
See below a picture of a part of my dashboard. When I select more than one option in de red frame on the left I would NOT see the name in the red frame on the right. Only when I select one option I would like to see the location over here.
Hopefully someone can help me with this, thanks in advance.
karelstoel , Try a measure like
If (countrows(allselected(Table[project Number])) >1, Blank(), max(Table[Project Name]) )
2 Replies
- amitchandak
Super User
karelstoel , Try a measure like
If (countrows(allselected(Table[project Number])) >1, Blank(), max(Table[Project Name]) )
- karelstoel
Advocate I
amitchandak Great, thanks!