if functions with positive and negative numbers

R

Ronnie

Could anyone help with this problem?

I want to use an if function to display some text if a
number falls between the range negative 1 to positive 1.

Thanks

Ronnie
 
R

Ron Rosenfeld

Could anyone help with this problem?

I want to use an if function to display some text if a
number falls between the range negative 1 to positive 1.

Thanks

Ronnie

=IF(ABS(A1<=1),"some text")


--ron
 
Top