include rounding in a formula

K

KrispyData

i have the following:

A B C
1 327.2 3033.56 0.107860072

column C1 is simply A1/B1 . Is there a way that i can include in my formula
to round the results to 0.11?

What I have been doing is creating another column and entering the formula:
round(c1,2)
then copying and pasting values

I am hoping to eliminate these steps and somehow include the rounding
function in the formula. Is this possible?
 
L

Lars-Åke Aspelin

i have the following:

A B C
1 327.2 3033.56 0.107860072

column C1 is simply A1/B1 . Is there a way that i can include in my formula
to round the results to 0.11?

What I have been doing is creating another column and entering the formula:
round(c1,2)
then copying and pasting values

I am hoping to eliminate these steps and somehow include the rounding
function in the formula. Is this possible?

In C1 use this formula:

=ROUND(A1/B1,2)

Hope this helps / Lars-Åke
 
K

kyleb

The basic structure for the ROUND function is:
=ROUND(formula, # of decimal places)
Hope this helps.
 

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