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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have couple of visuals(gauges, Tachometer, advanced cards, matrix, etc.) in my Dashboard and the problem is that when I don't have data, although the data lables removed, I can't remove the titles of the visuals?
What is the DAX formula for this purpose?
Many thanks for your ideas
Solved! Go to Solution.
You will need to use the new conditional formatting titles along with a measure to check for your value being blank. Something like.
IF ( ISBLANK ( [value measure] ), "", "This is my title")
I use the "" instead of BLANK() to return and empty string instead of (BLANK)
You then use this measure in the conditional format title of your visual.
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-format-visual-titles
You will need to use the new conditional formatting titles along with a measure to check for your value being blank. Something like.
IF ( ISBLANK ( [value measure] ), "", "This is my title")
I use the "" instead of BLANK() to return and empty string instead of (BLANK)
You then use this measure in the conditional format title of your visual.
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-format-visual-titles
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!