Need help with whichever is greater formula

R

Roxy

I have a worksheet in MS2003 and need to have a cell preform the following
function:
Multiply cell U3 by .05 or display 1 whichever is greater.

Any help is greatly appreciated, thanks in advance!

~Roxy
 
R

robzrob

I have a worksheet in MS2003 and  need to have a cell preform the following
function:
Multiply cell U3 by .05 or display 1 whichever is greater.

Any help is greatly appreciated, thanks in advance!

~Roxy



=IF(U3*0.5<1,U3*0.5,1)
 
R

Roxy

Thank you Thank you Thank you!!! You are the best that worked perfectly!

Cheers!
~Roxy
 
D

Dana DeLouis

Multiply cell U3 by .05 or display 1 whichever is greater.

Another option is to take the "maximum" of the two values.

=MAX(U3*0.05, 1)

--
HTH :>)
Dana DeLouis
 

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