Forum Discussion
Conditional tooltip?
Hi all,
Is there a way to conditionally display a tooltip? For example, if the value in a Card happens to be (Blank), display a tooltip saying "Information not available", but if it is not (Blank), display the default information.
- Anonymous6 years ago
You could create a measure that does this and then include that measure into the visuals "Tooltip" section.
In the top of your measure you can create
if(isblank([Measure]),"No Information",[Maesure]&"")
Please note you need to have the same datatype.
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Proud to be a Datanaut Connect on Linkedin
2 Replies
- AnonymousNot applicable
You could create a measure that does this and then include that measure into the visuals "Tooltip" section.
- amitchandakSuper User
In the top of your measure you can create
if(isblank([Measure]),"No Information",[Maesure]&"")
Please note you need to have the same datatype.
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Proud to be a Datanaut Connect on Linkedin