Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
Feeling a little stumped with this one. I have a stacked bar chart that has been created using measures as the values:
You can see the measures in the X-axis there ("FunnelBM" is the measure I'm currently hovering over in the chart). I need to use a custom tooltip, and what I want is to show the value of the measure I'm currently hovering over in the chart. So if I'm hovering over "FunnelBM". it'll show the value of "FunnelBM", if I'm hovering over the "FunnelRG" portion, it'll show "FunnelRG", and so on. It's proving difficult!
I've gone all the way back to just seeing if I can just identify the measure at all in the chart using SELECTEDMEASURE(), as in the picture above, but I'm getting nothing. Am i missing something fundamental here?
My easy way out is to throw all the measures into a multi-tiled card and show the values for the whole bar when I'm hovering, but I do feel like I'm missing something obvious here.
Hi @EpicTriffid ,
Option 1 – Using Calculation Groups (Recommended Approach)
Option 2 – Without Tabular Editor (Alternative Method)
Rationale
Tejaswi.
Hi @EpicTriffid ,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.
Thank you,
Tejaswi.
Hi @EpicTriffid ,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.
Thank you,
Tejaswi.
Hi @EpicTriffid ,
Hovered Measure =
VAR HoveredValue = SELECTEDMEASURE()
RETURN
IF(
NOT ISBLANK(HoveredValue),
"Value: " & FORMAT(HoveredValue, "#,##0"),
"No Value"
)
Please let me know if this works
Best Regards,
Have you tried pulling the same measure in any other type of graph, say Line Graph and check if tooltip shows values there ? If yes then just converting it to Stacked Bar chart should work
Hi @EpicTriffid
SELECTEDMEASURE() won't work in a tooltip in this scenario unfortunately. DAX doesn't know which measure you're hovering over.
My suggestion would be to create a tooltip report page and use a matrix or card visual that shows all measures, but conditionally highlights the one relevant to the hovered segment.
Use a field (like a disconnected table of measure names) to drive conditional formatting or visibility.
Unfortunately, this still won’t dynamically detect the hovered measure — but you can make it look cleaner than a multi-tile card.
--------------------------------
I hope this helps, please give kudos and mark as solved if it does!
Connect with me on LinkedIn.
Subscribe to my YouTube channel for Fabric/Power Platform related content!
Hi @wardy912,
I think this may be the best option. I'm a little unclear, however, how I would get the conditional formatting to work? Could you please elaborate a little?
Thanks!
Sorry @EpicTriffid
I thought I could get the tooltip page to use conditional formatting correctly but it's not able to recognise the measure i'm hovering over.
Have you considered using a field parameter to select the individual measures rather than stacking them?