Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
How stupid PBI can produce this result?
Sales = SUM(debsum) - SUM(CredSum)
The problem comes from the total of the sales measure.
It's calculating as a tiny value eg 0.00000000000000001 You're then dividing by this and giving the large percentage.
How would you expect the sales measure to agregate at the total level? If it's a straight sum of each day you need to do:
Sales =
SUMX(
VALUES ( Date[Date] ),
SUM(debsum) - SUM(CredSum)
)
@bcdobbs i also thought like that, but i did a test,
Measure = [Sales] > 0 Result: False
Measure = [Sales] < 0 Result: True
Measure = [Sales] <-0.000000000000001 Result: True
What value would you expect the total sales to be and how should it be aggregated?
_F 11 EBITDA Is also negative so I think your test further agrees with result you're seeing.
Sorry slight update to the above now I'm at a computer.
Set the data type for columns and measure to fixed decimal:
Data types in Power BI Desktop - Power BI | Microsoft Docs
Rather than decimal number.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 24 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 44 | |
| 32 | |
| 18 | |
| 17 | |
| 16 |