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

How to hide tooltips if data is blank

Hi,

 

1. If my data is blank/empty, the tooltips will no show the tooltips table or window. If I have data only pop out the tooltips table/ window. How to do or create DAX?

2. If I have 2 rows, one is called "Plan", another is called "Actual". How to tooltips data only pop out in "Actual" row?

 

1 REPLY 1
Anonymous
Not applicable

Hi @joce1127 ,

 

DAX does not control the visibility of tooltips. This can be achieved by adjusting the filters on the visual or using a measure that returns null for blank values, as null values ​​do not display tooltips.

vhuijieymsft_0-1717033184637.png

 

When I hover the mouse over Jan-3, no tool tip pops up.

vhuijieymsft_1-1717033184642.png

 

To conditionally display tooltips for rows marked as "Actual" while hiding rows marked as "Planned", you can create a measure that does not display tooltips for null values.

Measure = IF(MAX('Table'[Type]) = "Actual",MAX('Table'[Value]),BLANK())

 

The pbix file is attached.

 

If you have any further questions, please feel free to contact me.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors