How do I use Roundup in a logical test in excel

D

DC

I am entering a formula using a logical test in Excel. I want the results to
always round up to the next whole number. I am not able to get the "Roundup"
function to work. Any help would be appreciated.
 
N

Niek Otten

What formula? What data? What results did you expect? What did you get
instead?

--

Kind Regards,

Niek Otten

Microsoft MVP - Excel
 
J

JE McGimpsey

Without your posting your formulae, it's impossible to help you with it
other than to say "look in Help".

Generally, you could wrap your existing formula with

=ROUNDUP(<existing formula>, 0)

Alternatively:

=CEILING(<existing formula>, 1)
 
C

CLR

Something like this maybe?
It will give you a blank cell if the result is an error.

=IF(ISERR(ROUNDUP(IF(A1>100,A1,""),0)),"",ROUNDUP(IF(A1>100,A1,""),0))

Replace the IF statement with your formula, both places.......

Vaya con Dios,
Chuck, CABGx3
 

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