Creating an IF / AND statement

P

Pat

Is there a way to create an if statment that involves two different cells;
ie "IF B2=>3, AND C2=>1, YES, NOT YET"

I've tried: =IF(B2>=3,(AND(C2>=1,"YES","Not yet")))
but it returns a #Value! error.

Thank you!
 
P

Pete McCosh

It's the structure of the AND part that's causing the problem:

=IF(AND( B2>=3, C2>=1),"YES","Not Yet")

Cheers, Pete.
 
P

PCLIVE

That's ok. I was just kidding anyway. My response was the first one.
Maybe it was too quick. Anyway, it was the same as the others and you got
the correct answer...that's what's important. Good luck on your project.

Regards,
Paul
 
Top