IF gone wrong

  • Thread starter Thread starter Turnipboy
  • Start date Start date
T

Turnipboy

This is a simple IF statement that I can not get to work:

=IF(4000<$F59<9000,"BETWEEN","NOT BETWEEN")


No matter what I put in F59, e.g. 5000 I only get the output NOT
BETWEEN. What am I doing wrong?

Thanks.
 
Hi

Try
=IF(AND($F59>4000,$F59<9000),"BETWEEN","NOT BETWEEN")

Regards

Roger Govier
 

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