Rounding Formulas

G

Guest

I'm working in a spreasheet that has a lot of formulas, if I want to round
the number that a formula shows, do I need to do that in a different colmn or
is there something I can add to the formula to round it to the nearest
dollar? Here is an example if the formula I'm often using in this
spreadsheet.

=((C22*G11)*G17)
 
G

Guest

=round((C22*G11)*G17),0) should do it.

If you want the result to the nearest PENNY, do this:

=round((C22*G11)*G17*100),0)/100
 
P

Peo Sjoblom

There is no need to have those extra parenthesis unless there are other
types of calculations involved (like addition), to round that to the nearest
dollar would be

=ROUND(C22*G11*G17,0)

--
Regards,

Peo Sjoblom

(No private emails please)
 
B

Bob Phillips

=ROUND(((C22*G11)*G17),2)

rounds that formula to the nearest penny.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
M

Marc Fleury

I'm working in a spreasheet that has a lot of formulas, if I want to
round the number that a formula shows, do I need to do that in a
different colmn or is there something I can add to the formula to
round it to the nearest dollar? Here is an example if the formula I'm
often using in this spreadsheet.

=((C22*G11)*G17)

Do you just want to round what it SHOWS, or what it calculates? In other
words, if you're going to be doing more calculations with the value in that
cell, do you want to do use the rounded off value in the new calculations?

Because if you only need to round off what the cell DISPLAYS, you can do
that by formatting the cell -- you don't need to change the formula at all.
 

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