IF Function

S

sgrech

Here is a nice easy one!

I have a value in a spreadsheet that I need to check. If the valu
<-0.005% or >0.005%, then I need to notify the user that an adjustmen
is required.

I tried this

=IF(C27<-0.0049999,"adj required",(IF(C27>0.0049999,"adj required","n
adj required")))

but alas it doesn't work. Can anyone help?

Thanks
Simo
 
D

Domenic

Try...

=IF(A1<>"",IF(ABS(A1)>0.005%,"Adjustment Required","No Adjustmen
Required"),"")

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