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

Send card to the back once slicer selected, so the user can hoover over visual

I have a card, and once a name is selected from the slicer, the card goes transparent so the visual can be seen. However, the user is unable to hoover over the visual as the card is still infront. 

 

How do I send the card to the back or how can I fix this please?

daniellamoore29_0-1696511999414.png

daniellamoore29_1-1696512007764.png

 

 

1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

Hi @daniellamoore29 
This is a known disadvantage of this method of "hiding visuals"

Unfortunately, this is no option to " send it back".

As an alternative, you can just make the graph blank and put the message of choosing an indicator to the title.

The workaround's steps:

1. Creating a flag measure that indicates if there are some selections on the slicer :

SelectionChek = if(isfiltered('Table'[needed categories to select]),1,0)
2. Creating a measure for a graph that returning blank when there are no value  selected
graph measure= if (CALCULATE([SelectionChek],ALLSELECTED('Table'[vale from slicer]))=1, [needed calculation to put on the graph]), blank())
3. Creating the title with message or graph heather
title = if(ISBLANK([graph measure]), "Please select needed indicators", "graphs heather")
 4. with conditional formatting make the message highlighted with red.
Ritaf1983_0-1696557491788.pngRitaf1983_1-1696557667420.png

Link to the file with an example 

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

View solution in original post

1 REPLY 1
Ritaf1983
Super User
Super User

Hi @daniellamoore29 
This is a known disadvantage of this method of "hiding visuals"

Unfortunately, this is no option to " send it back".

As an alternative, you can just make the graph blank and put the message of choosing an indicator to the title.

The workaround's steps:

1. Creating a flag measure that indicates if there are some selections on the slicer :

SelectionChek = if(isfiltered('Table'[needed categories to select]),1,0)
2. Creating a measure for a graph that returning blank when there are no value  selected
graph measure= if (CALCULATE([SelectionChek],ALLSELECTED('Table'[vale from slicer]))=1, [needed calculation to put on the graph]), blank())
3. Creating the title with message or graph heather
title = if(ISBLANK([graph measure]), "Please select needed indicators", "graphs heather")
 4. with conditional formatting make the message highlighted with red.
Ritaf1983_0-1696557491788.pngRitaf1983_1-1696557667420.png

Link to the file with an example 

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

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.