IF

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

Guest

I am trying to use =IF(A5>5<=10,formula,altformula). No mater what A5 is I
always get false or altformula. Is it possible to use<> in IF statements? If
so, what am I doing wrong?

Thanks for your help!
 
You can't compare items like that. Try something like

=IF(AND(A5>5, A5<=10), formula, altformula)
 

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