Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
2.Tooltip
Question:
When the Max_Sale_Product measure is used in table it is working fine when selecting top 1 or top 5 value in slicer but when the same measure in used against tooltip it is always showing top 5 value. Why?
Hi community members need your help?
Solved! Go to Solution.
Hi @Balakrishnan_J ,
The issue occurs because tooltips in Power BI often ignore slicer context.
Ensure Slicer Context Propagates
Add the slicer field (TopNTable[Value]) to the tooltip page and ensure it filters the tooltip.
Use IsInScope in the Measure
VAR TopN_Value = IF(ISINSCOPE(TopNTable[Value]), SELECTEDVALUE(TopNTable[Value], 5), 5)
Separate Tooltip Logic
Create a tooltip-specific measure with a fixed or parameter-based TopN value.
If this post helped please do give a kudos and accept this as a solution
Thanks In Advance
Hi @Balakrishnan_J ,
The issue occurs because tooltips in Power BI often ignore slicer context.
Ensure Slicer Context Propagates
Add the slicer field (TopNTable[Value]) to the tooltip page and ensure it filters the tooltip.
Use IsInScope in the Measure
VAR TopN_Value = IF(ISINSCOPE(TopNTable[Value]), SELECTEDVALUE(TopNTable[Value], 5), 5)
Separate Tooltip Logic
Create a tooltip-specific measure with a fixed or parameter-based TopN value.
If this post helped please do give a kudos and accept this as a solution
Thanks In Advance
Check out the July 2025 Power BI update to learn about new features.