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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
MKM
Helper II
Helper II

When initially PB desktop open all Visualization hide ,once any slicer applied then it should show

Hi Team,

 

Need your support.

 

When initially PB desktop open all Visualization should be hide( that means look like blank page)  ,once any slicer applied ( example date, classification, priority, states)  then it should show some visualization based on selection.

 

Please check and do the needful.

1 ACCEPTED SOLUTION
dk_dk
Super User
Super User

Hi @MKM 

I have a partial solution that may or may not work for your use case:

 

Here is the sample page I am using, a simple table with some columns, some of which are used in slicers:

dk_dk_0-1723027834341.png

 

I create a measure:

 

ShowData = IF(ISFILTERED('Table'),"#FFFFFF00","#FFFFFF")

 

 If you have a colored background in your report, use the hex color code of your background instead of "#FFFFFF".

If you have visuals built on multiple tables on the page, you need to expand the IF statement to include an ISFILTERED condition for each of the tables:

ShowData = IF(ISFILTERED('Table1')||ISFILTERED('Table2')||ISFILTERED('Table3'),"#FFFFFF00","#FFFFFF")

 

Then you can place a rectangle shape and make it cover all of your visuals (except for the slicers that you need to interact with.

dk_dk_1-1723027981131.png

In the shape settings go to Style -> Fill, and click the fx icon. Set it up like this:

dk_dk_2-1723028028209.png

 

Click ok. Now when you have any filters applied to the Table, the rectangle will become transparent, revealing the  visuals underneath.

 

dk_dk_3-1723028108378.png

This also works with filters in the filter pane, so you do not need to have slicers visible on the page if you do not want to.

 

 

The limitation of this method is that the transparent rectangle is "blocking" the visuals on the page, so you will not be able to interact with them.

 

I hope this helps, let me know if you have any questions!




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

2 REPLIES 2
dk_dk
Super User
Super User

Hi @MKM 

I have a partial solution that may or may not work for your use case:

 

Here is the sample page I am using, a simple table with some columns, some of which are used in slicers:

dk_dk_0-1723027834341.png

 

I create a measure:

 

ShowData = IF(ISFILTERED('Table'),"#FFFFFF00","#FFFFFF")

 

 If you have a colored background in your report, use the hex color code of your background instead of "#FFFFFF".

If you have visuals built on multiple tables on the page, you need to expand the IF statement to include an ISFILTERED condition for each of the tables:

ShowData = IF(ISFILTERED('Table1')||ISFILTERED('Table2')||ISFILTERED('Table3'),"#FFFFFF00","#FFFFFF")

 

Then you can place a rectangle shape and make it cover all of your visuals (except for the slicers that you need to interact with.

dk_dk_1-1723027981131.png

In the shape settings go to Style -> Fill, and click the fx icon. Set it up like this:

dk_dk_2-1723028028209.png

 

Click ok. Now when you have any filters applied to the Table, the rectangle will become transparent, revealing the  visuals underneath.

 

dk_dk_3-1723028108378.png

This also works with filters in the filter pane, so you do not need to have slicers visible on the page if you do not want to.

 

 

The limitation of this method is that the transparent rectangle is "blocking" the visuals on the page, so you will not be able to interact with them.

 

I hope this helps, let me know if you have any questions!




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Nice, its working 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

August Carousel

Fabric Community Update - August 2024

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