how do I add round to a IF statement?

  • Thread starter Kelly Ditsworth
  • Start date
K

Kelly Ditsworth

I have the following formula and I want to round the same cell. Is this
possible?
=IF(C8=0,C8*J8,J8)
 
P

Pete_UK

Well, if C8 does equal zero, then C8*J8 will also equal zero, so your
formula could be written as:

=IF(C8=0,0,J8)

Did you mean to write:

=IF(C8=0,J8,J8*C8)

?

Anyway, to round it to 2 decimal places, for example, you can just put
ROUND around your formula (whichever it is) like this:

=ROUND(your_formula,2)

Hope this helps.

Pete
 
K

Kelly Ditsworth

Sean: It worked like a champ. I been fighting this for quite awhile.
thanks so much!
 
J

JoeU2004

Kelly Ditsworth said:
I have the following formula and I want to round the same cell. Is this
possible?
=IF(C8=0,C8*J8,J8)

=ROUND(IF(C8=0,C8*J8,J8), 2)

The IF() example does make sense as written. But I presume it is meant to
be a paradigm, not actual functionality.
 

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