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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

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 @Anonymous 

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 @Anonymous 

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!





Anonymous
Not applicable

Nice, its working 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors