Values only

  • Thread starter Thread starter Vicki
  • Start date Start date
V

Vicki

I wish to add 3 cells but each cell contains a
multiplication formula so when I sum the 3 cells together
I do not get the correct decimal number. I am working with
dollar amounts

Cell 1 = 9,070.40*0.05 = 453.52
Cell 2 = 9,070.40*0.03 = 272.112
Cell 3 = 9,070.40*0.01 = 90.704

When rounded individually then summed manually (453.52 +
272.11 + 90.70)they give the result I am looking for.
However when I used the sum function it sums the
individual cells using the 3 decimals and then rounds to 2
decimals is there a way to only sum the number using 2
decimals?
 
Hi
You have to round the cells individually. e.g.
=ROUND(A1,2) + ROUND(A2,2)
 
Not necessarily,

=SUM(ROUND(C1:C3,2))

it's an array formula, so commit with Ctrl-Shift-Enter

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

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

Sum Function 2
Rounding Effecting Sum 2
why is answer rounded up? 1
Sums 2
rounding problem in Excel 1
Rounding 6
office 2003 Excel - SUM 3
text & formual problem combined 5

Back
Top