How to combine these?

  • Thread starter Thread starter Jim
  • Start date Start date
J

Jim

Hello,
I'm using Excel 2003 and I need a formula that will do the following:
=Sum(a1*$a$2) and then take that value and do =MRound(total from formula 1,
05) Does anyone know how to combine these?
Thanks for any help.

Jim
 
Maybe...

=mround(sum(a1*$a$2),5)

But =sum() isn't helping here. This should work just as well.

=mround(a1*$a$2,5)
 
Thanks, mround(a1*$a$2,0.5) worked great.


Dave Peterson said:
Maybe...

=mround(sum(a1*$a$2),5)

But =sum() isn't helping here. This should work just as well.

=mround(a1*$a$2,5)
 

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

Back
Top