Easy one for you all...

C

Connie Martin

....but not for me. I can do it on a calculator, but not in Excel. This is
what I'm trying to do: the sum of (D3*G3) + 10%. The numbers are: D3 =
21.6, G3 = 100, so the answer should come to 2,376. And then I want to round
up that number to become 2,400. Thank you. Connie
 
M

Mike H

Hi,

You only gave 1 example of your rounding criteria so how about this

=CEILING((D3*G3)*1.1,100)

Mike
 
R

RagDyeR

Try this:

=CEILING(D3*G3*1.1,100)
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


....but not for me. I can do it on a calculator, but not in Excel. This is
what I'm trying to do: the sum of (D3*G3) + 10%. The numbers are: D3 =
21.6, G3 = 100, so the answer should come to 2,376. And then I want to
round
up that number to become 2,400. Thank you. Connie
 
C

Connie Martin

Thank you, Mike. That's exactly what I'm looking for. I'm totally
unfamiliar with the CEILING function, but it works! Thanks again. Connie
 
M

Mike H

your welcome

Connie Martin said:
Thank you, Mike. That's exactly what I'm looking for. I'm totally
unfamiliar with the CEILING function, but it works! Thanks again. Connie
 
A

Ashish Mathur

Hi,

Try this.

=MROUND(D3*G3*1.1,100)

If you are using any version other than Excel 2007, you will need to install
the Analysis Toolpak from Tools > Addins for the MROUND() function to work

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
 
D

David Biddulph

You could avoid the need for ATP by changing =MROUND(D3*G3*1.1,100) to
=ROUND(D3*G3*1.1,-2)

The OP did, however, want to round *up*, so =ROUNDUP(D3*G3*1.1,-2) or
=CEILING(D3*G3*1.1,100)
 

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

Top