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
BhavaniK
Frequent Visitor

How to hide the visual in powerbi when we dont have data

Hi Team, I'm looking for a help to achieve this logic. I have Timertable with 2 columns(Value and Sector).

ValueSector
1Sector1 
2Sector2
3Sector3 

As of now, I have a visuals with timer every 30 seconds it will flicker the screens for Sector 1, sector 2, sector 3.

 

In this, if we don’t have any one of the sector don’t have a data then that visuals should not appear in the screen. Is that possible to do?

5 REPLIES 5
BhavaniK
Frequent Visitor

I'm able to complete the task by own. But not sure how to close this request.

 

Hi @BhavaniK 

Thank you for the update. If you have found a solution, please share it here, as it will help other community members facing similar issues. Looking forward to your response.

Regards,
Karpurapu D.

v-karpurapud
Community Support
Community Support

Hi @BhavaniK 

Thank you for submitting your question to the Microsoft Fabric Community Forum, and thanks to @Irwan and @danextian  for offering helpful suggestions.

Could you let us know if the suggested solution resolved your issue? This information can assist other community members facing similar challenges.

Thank you.

 

danextian
Super User
Super User

Hi @BhavaniK 

This isn't possible. You cannot hide visuals based on certain values. You can only conditionally format the values inside (conditional formatting not supported on headers) or use a shape as what @Irwan had suggested. Of course, that approach won't work if the user needs to interact from the visual as what will be clicked is the shape.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Irwan
Super User
Super User

hello @BhavaniK 

 

i dont think you can do this directly but you can tweak your visual

Irwan_0-1755226066643.png

 

the step are :

1. put a shape on top of your visual that you want to hide

2. assign color code using conditional field value, when there is a value then transparent color on that shape while there is no value then put a color that same as your background color

Irwan_5-1755226406558.png

Irwan_6-1755226442313.png

 

 

 

as sample data above, value 3 of column1 has no/blank value on column2

Irwan_1-1755226163976.png

Irwan_2-1755226176124.png

Irwan_3-1755226186945.png

if there is no shape, then the visual will be shown as blank value like below

Irwan_4-1755226305861.png

a simple measure to assign color such as below (you can change as you need)

Measure =
IF(
    SELECTEDVALUE('Table'[Column2])=BLANK(),
    "#FFFFFF",
    "#FFFFFF00"
)

 

Hope this will help.

Thank you.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors