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
Domenic - 22 Oct 2004 19:36 GMT
Try...
=IF(A1<>"",IF(ABS(A1)>0.005%,"Adjustment Required","No Adjustmen
Required"),"")
Hope this helps!
sgrech Wrote:
> Here is a nice easy one!
>
[quoted text clipped - 11 lines]
> Thanks
> Simo
Bob Sweet - 22 Oct 2004 21:31 GMT
Have you tried using "Validation" under the Data menu?
> Here is a nice easy one!
>
[quoted text clipped - 11 lines]
> Thanks
> Simon