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.
Hello Community Team,
I am having struggles with rounding the numbers. I don't want it to round after 2 decimals, but I am unsure of the dax grammar to make it so. Please find the snapshot. Unfortunately, explaining to the management team rounding issues, it still confuses them.
I would just like the Share Change= 0.9 - 1.0 = -0.1 (not the -0.2 shown from rounding).
My share formulas are:
Share Change = [Current Share] - [LY Share]
Solved! Go to Solution.
Hi @9kRPM
If you would like the value of Share Change displayed in the visual to be equal to the difference between the displayed (i.e. rounded) values of Current Share and LY Share, I would suggest:
Share Change display =
ROUND ( [Current Share], 1 ) - ROUND ( [LY Share], 1 )
I would suggest just using this measure for display in visuals, but use the original Share Change in any calculations.
Does this work for you?
Regards
That worked perfectly Owen! You're awesome! Thank you. I didn't know you could use the round function in a simple calc like that.
Hi @9kRPM
If you would like the value of Share Change displayed in the visual to be equal to the difference between the displayed (i.e. rounded) values of Current Share and LY Share, I would suggest:
Share Change display =
ROUND ( [Current Share], 1 ) - ROUND ( [LY Share], 1 )
I would suggest just using this measure for display in visuals, but use the original Share Change in any calculations.
Does this work for you?
Regards
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.
User | Count |
---|---|
10 | |
8 | |
6 | |
4 | |
3 |