• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Nesting IF function and Roundup Function- help please

brittcarey

New Member
Here is my formula:

=IF(B2>=1,(A2*10)/50,IF(C2>=1,(A2*5)/50,0))


I would like the output value to be rounded up to the next highest whole number but was unable to make this work. Please provide any suggestions- Thank you!


*Note- my office is still operating with 2003 (upgrading soon- yay!)
 
Hi Brittcarey,


What if you wrap up your formula in a ROUNDUP() function:


Code:
=ROUNDUP(IF(B2>=1,(A2*10)/50,IF(C2>=1,(A2*5)/50,0)),0)


Hope that helps.


Faseeh
 
Back
Top