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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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","")
 
You are close in your attempt. Try this:

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

Good Luck

Bruc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top