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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
hey ,
My graph shows the amount of films each director has
I want to show Tull Tip the most lucrative film of any director.
I came out with an index that measures the profit of each movie and took the maximum
Instead of showing me the profit I want him to show me the name of the movie
How can I do this?
Hi @Anonymous ,
According to my understand, you want use tooltip to display the film name with the most profit per director ,right?
You could create a measure as shown belows:
The most profitable film =
VAR _max =
CALCULATE (
MAX ( 'Table'[Profit] ),
FILTER ( ALL ( 'Table' ), 'Table'[Director] = MAX ( 'Table'[Director] ) )
)
RETURN
CALCULATE ( MAX ( 'Table'[Film] ), FILTER ( 'Table', 'Table'[Profit] = _max ) )
Then drag it to Tooltip pane like this:
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
Use a measure
Customizing tooltips in Power BI Desktop - Power BI | Microsoft Docs
Or create a custom tool tip page for that.
Using report tooltip pages in Power BI - Power BI | Microsoft Docs
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.