Forum Discussion
Card visual disapear when data is not available
- 7 years ago
Hey,
I'm referring to the title of this thread.
You can use a measure (you have to use the latest version of Power BI - June 2019 releaese), that returns an empty string when anoter measure is blank. Create a measure like so:
vizAid Card Title (no title when measure is blank) = var theValue = [Total Quantity] return IF(ISBLANK(theValue) , "" , "The amount is " & theValue)
Then you can assign this measure to return the text, this text will be used as title:
Please be aware, that you have to come to close to the region of upper arrow to make "3 little dots" appear, using these dots, you can enter the conditional formatting.
From this dialog you can select the measure from the table it is assigned to:
Hopefully this is what you are looking for.
Regards,
Tom
Thanks TomMartens ,
I don't get it, my question was about how to hide the title of the tachometer visual when the data is N/A. I don't concern the data label. Please advise a good solution.
Thanks again
Hey,
I'm referring to the title of this thread.
You can use a measure (you have to use the latest version of Power BI - June 2019 releaese), that returns an empty string when anoter measure is blank. Create a measure like so:
vizAid Card Title (no title when measure is blank) = var theValue = [Total Quantity] return IF(ISBLANK(theValue) , "" , "The amount is " & theValue)
Then you can assign this measure to return the text, this text will be used as title:
Please be aware, that you have to come to close to the region of upper arrow to make "3 little dots" appear, using these dots, you can enter the conditional formatting.
From this dialog you can select the measure from the table it is assigned to:
Hopefully this is what you are looking for.
Regards,
Tom