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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Issue Description: -
We have formatted the Y axis values in stacked column chart to display in millions by adjusting the Y axis setting. However, we are facing difficulty in formatting the values within the default tooltip to also reflect the millions format with the "M" suffix.
Workarounds attempted:-
1 - We created a separate measure "tooltip display" with the "M suffix and use it in the tooltip, But this resulted in the original number values not being greyed out.
2 - Enabling data labels worked as expected, but the default tooltip values remained in number format.
Desired Outcome - I am seeking a workaround or solution to display values in million with the "M" suffix in the default tooltip of the stacked column chart.
Measure Used -
Y axis measure - sum(table(duration)/1000000
Tooltip display measure - format([Y axis measure],"#,##0.0") & "M"
Please find below screenshot for reference.
I kindly request any assistance in achieving this desired outcome.
@Anonymous
Add two commas before the decimal dot
Tooltip display measure - format([Y axis measure],"#,##0,,.0") & "M"
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Fowmy , Thanks for the reply, But this won't solve my issue. As my desired outptut is
"Display values in million with the "M" suffix in the default tooltip of the stacked column chart".
As i don't want to create separate measure for tooltip as original values still in numbers.