I am trying to construct a formula using If and AND function together and needs help with the same.
I want to say IFA5="NO", AND A7>0 and A8>0, then output "Check", Otherwise leave it blank
A5, A7, and A8 also have a If formula nested in them.
It sounds simple and I have done couple of arguments but I am only getting error.
Here are my try's
=IF(A5)="NO",AND(A7>0,A8>0),"CHECK","" I got errors on this formula
OR
=IF(AND(A5="NO",(A7>0,A8>0)),"CHECK","")
This formula said CHECK even when A5 is not equal to NO, said TRUE when both the conditions were true(but I want it to say check instead of true)and said FALSE when IF condition met but AND condition did not meet(I want it to leave the cell blank instead of calling it false.
What am I doing wrong and how can I fix it? Please Help!
I want to say IFA5="NO", AND A7>0 and A8>0, then output "Check", Otherwise leave it blank
A5, A7, and A8 also have a If formula nested in them.
It sounds simple and I have done couple of arguments but I am only getting error.
Here are my try's
=IF(A5)="NO",AND(A7>0,A8>0),"CHECK","" I got errors on this formula
OR
=IF(AND(A5="NO",(A7>0,A8>0)),"CHECK","")
This formula said CHECK even when A5 is not equal to NO, said TRUE when both the conditions were true(but I want it to say check instead of true)and said FALSE when IF condition met but AND condition did not meet(I want it to leave the cell blank instead of calling it false.
What am I doing wrong and how can I fix it? Please Help!