4
2 Comments

How-to Avoid Rounding "Errors" in Excel (Day 193)

While working on a financial calculator using Excel as the "reference of truth", I've run into this rounding error -- payments are off by pennies and it ends up off by dollars over time. Instinctively, I tend to believe Excel must be correct. But after digging into the details, I noticed that there is a round off error with Excel:

While Excel displays only 2-decimals, internally, it has a higher precision. And calculations use the highest internal precisions before rounding off.

And this causes problems for financial calculators, where we assume the precision is always set to 2 decimals.

See the following calculation:

P = T - I (Principal = Total Payment - Interest Payment)

The principle (P) is off by 1-penny when using Excel, and here is why:

I = 32.93698323
T= 145.20 (fixed amount the user pays monthly)
P = 112.26535914 (calculated with Excel formula with previous round off error)

When displaying only 2 decimals, the numbers become:

I = 32.94
T = 145.20
P = 112.27
Plugging in the formula:
P = T - I and you get 112.27 = 112.26

This does not sound right, does it? Since we are dealing with money--which only has two decimals precisions--to get the correct numbers in Excel, we need to round up both T and I by using the formula =ROUND(..., 2) in Excel.

Use =ROUND(......, 2) in your formula to force a 2 decimal precision in Excel

Similarly, while programming the calculator, we have to be mindful that we always round up the result to .toFixed(2) before subjecting it to additional calculations.

This maybe something accountants learned in their Using Excel for Accounting 101 course, but it is something easily missed for non-accountants and would cause a lot of confusion when not done right.

  1. 1

    I was looking into storing currency in a database recently. It was recommended to actually use 4 decimal places. You can probably do that if you don't round until the end, but maybe you run into other problems?

  2. 3

    This comment was deleted a year ago.

Trending on Indie Hackers
After 10M+ Views, 13k+ Upvotes: The Reddit Strategy That Worked for Me! 42 comments Getting first 908 Paid Signups by Spending $353 ONLY. 24 comments 🔥Roast my one-man design agency website 21 comments I talked to 8 SaaS founders, these are the most common SaaS tools they use 19 comments What are your cold outreach conversion rates? Top 3 Metrics And Benchmarks To Track 19 comments Hero Section Copywriting Framework that Converts 3x 12 comments