If / Then Question

C

cal

Another one...

I would like a formula that will return true if a value
is between or equal to -10 to -1

Thanks again in advance.
 
H

hgrove

cal wrote...
...
I would like a formula that will return true if a value is between
or equal to -10 to -1

Adapt the responses you've already received.

=AND(X>=-10,x<=-1)

or somewhat trickier

=ABS(x+5.5)<=4.
 
Top