Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi team,
Is it possible to get select info when hovering on a card - ie. with below 2 cards, hover on red card show 1 employee name, hover on orange card show 4 employee names?
I tried both 'blank button' using a measure and 'tooltips' and they didn't work.
With 'blank button' I can't find the correct formula returning list of employees in the measure.
With 'tooltips' I get full list of employees instead of just 1 or 4.
Grateful for any help with this? Thanks in advance!
Solved! Go to Solution.
Hi @X19203659 ,
You have two Card visuals with different count formulas. So you will need two tooltip pages.
Best Regards,
Jay
Hi Jay,
Many thanks for you quick answer!
I succeeded by creating two tooltips (one for each card) - see below
I am a new Power BI user and have follow on query re above - if you could assist (sorry!)?
What I am trying to achieve is to show the employees per their year of retirement.
In my table I have only 2 fields (employee name, retirement date).
Instead of creating 2 tooltips, is it possible to perform the same by creating only one tooltip and, if yes, do you mind to sharing a practical example?
Many thanks in advance for your support!
Guillaume
Hi @X19203659 ,
You have two Card visuals with different count formulas. So you will need two tooltip pages.
Best Regards,
Jay
Hi @X19203659 ,
You could create a table visual in tooltip page then create a measure to mark the corresponding records.
For example:
count_measure = calculate(count(column1),column2=selectedvalue(column3))
mark_measure = if(selectedvalue(column2) = selectedvalue(column3),1,0)
Add the mark_measure to the table visual filter on tooltip page and set value =1.
Then use this tooltip page as the tooltip of the card visual.
Once select the slicer, the card visual will display the count of value based on count_measure. And the tooltip will show the filtered table visual on tooltip page based on the mark_measure.
Best Regards,
Jay
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
102 | |
99 | |
38 | |
37 |
User | Count |
---|---|
158 | |
125 | |
76 | |
74 | |
63 |