IF AND Function

N

nabanco

Hello,

Any suggestions on how to set up a formula for the below problem:

In once cell I'd like to return if true "Underwrite Now", and if false
return "Don't Worry"

Cell A1, if between 7 and 100, then return true

OR

if cell A2 is between 2 and 100, return true

Thank you
 
B

Bob Phillips

=IF(OR(AND(A1>=7,A1<=100),AND(A2>=2,A2<=100)),"Underwrite Now","Don't
Worry")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
N

nabanco

You are the man, been working on that for some time now!

Thanks for helping my headache
 

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

Top