This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
I have created a measure 'Delta' to show the difference between 2 other measures: 'Actuals' - 'Budget' (DeltaLEMTPFY Millions = [LE Millions] - [MTP FY Millions] ) . When the result comes close to 0, the result shows -4,0E-8. However it should show 0,0 (always 1 decimal)
In the matrix visual that I see I have set the decimals to 1:
Any idea how to solve this?
Thank you in advance!
Solved! Go to Solution.
You can round using the below DAX for a calculated column
Column = ROUND(Table2[Value], 1)
Difference before and after rounding off is shown in screenshot below
First image values are not rounded off while the 2nd image values are rounded off. The Other scenario of negative values also handled
Hi @Anonymous,
Power BI is showing the data as -4.0E-8 because the values for that case is -0.00000004.
So in this case you can round your values to the No. of decimals that you want. But again rounding off to 1 decimal will automatically show it as 0.0 and anyother negative value such as -5.2 will continue to show as -5.2
The Other aolution is that you should handle the negative values so that they are always replaced with 0. Once you do this the report will always show 0.0 whenever the value becomes negative. In this case a value of -5.2 will also be replaced with 0.0, which might not be desirable
Hi thanks, but I want to show negative values also. So, whether the value is positive of negative it should always show 1 decimal. So in this example I would expect -0,0 as end result.
So in this case you can round your values to the No. of decimals that you want. But again rounding off to 1 decimal will automatically show it as 0.0 and anyother negative value such as -5.2 will continue to show as -5.2
Do you know how to round the figure? Round function is not working (or I am using it incorrecly). Or do I need another function?
You can round using the below DAX for a calculated column
Column = ROUND(Table2[Value], 1)
Difference before and after rounding off is shown in screenshot below
First image values are not rounded off while the 2nd image values are rounded off. The Other scenario of negative values also handled
Thanks that works! I made a mistake using the round function. Thanks for helping me!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 36 | |
| 29 | |
| 22 | |
| 22 |