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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
EugenioProlog
Helper III
Helper III

How to leave a visual blank until I click on a graph

I have this simple dashboard with a line graph showing the total sales per person on each date, and on the right I have table that shows the clients and the price of their purchases. The thing is, I want to leave the table blank as default and only display its values when the use clicks on a marker of the line chart (so it displays the clients of that salesperson on that day). How can I adjust it so it stays blank as default?

Here is the link to my .pbix file:
https://drive.google.com/file/d/1VWLANFcNBcHb8OzumVjO2v57_6a1DZdq/view?usp=sharing

EugenioProlog_0-1771417776556.png

 

1 ACCEPTED SOLUTION

 

Power BI doesn’t hide table column headers automatically if there are no rows...If you really want the table to “disappear” entirely, you have two options:

  1. Overlay with a blank card or shape and toggle visibility via bookmarks.

  2. Use a Matrix visual with “Values” empty when your measure is 0 — sometimes looks cleaner

Hope that help! 

 

View solution in original post

4 REPLIES 4
JamieHolding
Resolver I
Resolver I

Besides the solution provided by @RicardoTraNa you could instead create a tooltip.

Add a page, set the Page Type to tooltip, add your table to this new page (it should take up the whole page) then set this tooltip page to be the tooltip for your line chart.

Now when someone hovers over the line chart they will see the filtered version of the table for date and person.

EugenioProlog
Helper III
Helper III

Where did you put the value of this metric though?

I put it as a visual filter, but is still shows the header of the table 

EugenioProlog_0-1771426082012.png

 

 

Power BI doesn’t hide table column headers automatically if there are no rows...If you really want the table to “disappear” entirely, you have two options:

  1. Overlay with a blank card or shape and toggle visibility via bookmarks.

  2. Use a Matrix visual with “Values” empty when your measure is 0 — sometimes looks cleaner

Hope that help! 

 

RicardoTraNa
Responsive Resident
Responsive Resident

Hey you should use this Dax: 

ShowTable =
IF(
HASONEVALUE(Sales[Person]) &&
HASONEVALUE(Sales[Date]),
1,
0
)

This works If you want the table to show only when exactly one person AND one date is selected. 

Best Regards! 


Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.