autosum addition error

W

Will123

when using autosum to add approx 30 cells of simple dollar amounts, it
calculates the total = a few cents short than the real amount- I can use a
calulator to get the correct amount. ie: example of amounts: 20,342.12 +
10,432.24 + 43,215.34 etc. thanks.
 
S

Sheeloo

Change the format and set the number of decimal places to more than two...
you may have more significant digits and what you see might be after rounding.

If you enter only two decimals then sum will always return the right result...
 
J

JBeaucaire

Rounding being missing from the original 30 cells is the culprit. Thi
happens a lot. Whatever formulas are in those 30 cells to creat
values, wrap then in a ROUND formula so the value you SEE in the cell i
stripped of any data past the first two digits

Then you can sum those cells with no problems

Example

=A1/B2*C3 might equal 1,234.5478
Displays as 1,234.55, but the .00789 is still there

Make the formula =ROUND(A1/B2*C3,2) instead, and the result is 1,234.5
for real
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top