Help Required With IF AND Formula

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

Guest

Hi - I need to write an IF AND Formula which evaluates 3 values

IF VALUE1<6 and VALUE2<6 and VALUE3>50 the result is GREEN

I have the formula to evaluate 2 values IF(AND(VALUE1<6,VALUE2<6),"GREEN"
but how do I incorporate the third value in to this?

Many thanks
Ian
 
Use formula you have like this IF(AND(VALUE1<6,VALUE2<6,VALUE3>50),"GREEN"
 
you can extend value 3 also under <and>
=if(and(value1<6,value2<6,value3>50),one result,second result)
 
Cheers Jim

I think I was expecting the solution to be much more
complicated!
 

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