Forum Discussion

powerbirino3's avatar
powerbirino3
Frequent Visitor
9 years ago
Solved

Calculated column incorrect calculation

Hi guys,   I'm facing a problem which I've never seen using Power BI and I have no idea why.   The problem is that I have created a calculated column with a basic calculation like this: "Euros / ...
  • Anonymous's avatar
    Anonymous
    9 years ago

    Working with decimals can be funny in places. Sometimes a number will display as rounded but systems will often keep the "true" figure.  An easy test might be to update your formula to something like

    Round(Euros, 2) / Round(Weight, 2) / Round(Quantity, 2)

    See if that changes the output any.