To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all!
please help with the following,
I have a Geo slicer with list of regions, for the sake of this example let's use continets:
I created a Dynamic Text Box which returns selected values from a slicer,
e.g.
if Europe is selected it returns => Europe ,
if Asia and Europe is selected it returns => Asia and Europe,
if 3 or more continets are selected it returns => Asia and Europe, etc.
if all continets are selected (or none is selected) it returns => All.
the only thing I can't figure out is how to return "all but one" when one continet is deselected
e.g. => "all but Europe" when all continents except Europe is selected or other scenarios.
Solved! Go to Solution.
@Anonymous , Try a measure like
Add other conditions
Switch( True() ,
countx(all(Table[Regions]), [Regions]) -1= countx(allselected(Table[Regions]), [Regions]) , "all but" & maxx(except(all(Table[Regions]), allselected(Table[Regions])), [Region]) ,
// add other conditions
)
@Anonymous , Try a measure like
Add other conditions
Switch( True() ,
countx(all(Table[Regions]), [Regions]) -1= countx(allselected(Table[Regions]), [Regions]) , "all but" & maxx(except(all(Table[Regions]), allselected(Table[Regions])), [Region]) ,
// add other conditions
)
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |