how i create a interval

D

demetrio29

ex.
is like this: 100<=d18<=200 or like this: 100/d18/200

i dont know how to create?
 
P

Pete_UK

Do you want something like this:

=IF(AND(D18>=100,D18<=200),"in range","outside range") ?

Hope this helps.

Pete
 
Top