Forum Discussion
Dynamic Formatting - Tooltips for specific instances
- 1 year ago
Hi RichardLinderma
Something like this :This is based on your requirement that content should appear only when the relevant category is selected.
My UX-informed recommendation is to always display guiding content, and in empty states, show a message like:
'No additional information available for category X.'
This provides the user with a clear sense of where they are and avoids confusion like
'Maybe I didn’t click correctly"
The pbix with the example is attached.If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
Unfortunately, you'll need to consider a different approach for two main reasons:
-
Tooltips in Power BI aren't clickable – you can't actually navigate anywhere by clicking a tooltip.
-
Conditional tooltips don't exist – while you can dynamically change the content of a tooltip using a measure, you can't control whether it appears or not based on a condition.
So instead of relying on a tooltip to guide the user to a link, you might want to consider an alternative:
-
If this is in a table or matrix, consider displaying the link itself as a value when
hierarchy[source]is "company1" or "company2". -
If it's in a visual or card, you could place a nearby text box or card that dynamically shows "Follow this link" only when the condition is met.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
Hi Rita, could I learn more about the second alternative you suggested?
- Ritaf19831 year agoSuper User
Hi RichardLinderma
Something like this :This is based on your requirement that content should appear only when the relevant category is selected.
My UX-informed recommendation is to always display guiding content, and in empty states, show a message like:
'No additional information available for category X.'
This provides the user with a clear sense of where they are and avoids confusion like
'Maybe I didn’t click correctly"
The pbix with the example is attached.If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.