IF statement (non nested) that compares cell value against range

R

r2d3

Is it possible to write a non-nested IF statement that looks something like

IF(A2>=10 AND A2<100,"10-100","") or IF(a2 is between 10 and 100,"10-100","")
 
S

swatsp0p

You are close in your attempt. Try this:

=IF(AND(A2>=10,A2<=100),"10-100","")

Good Luck

Bruc
 
Top