Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
User | Count |
---|---|
84 | |
79 | |
71 | |
48 | |
43 |
User | Count |
---|---|
111 | |
54 | |
50 | |
40 | |
40 |