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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

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

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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