Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Ali_Shakh
Helper II
Helper II

List of Slicer values with optional text value

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:

  • Asia
  • Africa
  • Europe
  • North America
  • South America
  • Australia/Oceania
  • Antarctica

I created a Dynamic Text Box which returns selected values from a slicer, 
e.g.
if Europe is selected it returns => Europe ,
Ali_Shakh_0-1672054394313.png
if Asia and Europe is selected it returns => Asia and Europe,

Ali_Shakh_1-1672054444641.png


if 3 or more continets are selected it returns => Asia and Europe, etc.

Ali_Shakh_2-1672054480535.png

if all continets are selected (or none is selected) it returns => All.

Ali_Shakh_3-1672054664522.png

 

 

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.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Ali_Shakh ,  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

)

 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Ali_Shakh ,  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

)

 

hi @amitchandak ,

 

you are indeed a Super User, 

 

all works, increadible, thanks a lot!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.