Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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
Solved! Go to 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:
Overlay with a blank card or shape and toggle visibility via bookmarks.
Use a Matrix visual with “Values” empty when your measure is 0 — sometimes looks cleaner
Hope that help!
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.
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
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:
Overlay with a blank card or shape and toggle visibility via bookmarks.
Use a Matrix visual with “Values” empty when your measure is 0 — sometimes looks cleaner
Hope that help!
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!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 47 | |
| 29 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 88 | |
| 76 | |
| 40 | |
| 26 | |
| 26 |