E Eduardo Feb 23, 2010 #2 Hi, when you want to meet two conditions for example A1= 2 A2= 3 if the conditions above are true you want to result be "OK" otherwise "WRONG" =if(and(A1=2,A2=3),"OK","WRONG")
Hi, when you want to meet two conditions for example A1= 2 A2= 3 if the conditions above are true you want to result be "OK" otherwise "WRONG" =if(and(A1=2,A2=3),"OK","WRONG")
P Pete_UK Feb 23, 2010 #3 Here's an example: =IF(AND(A1>0,B1>0),"Positive","not valid") Both A1 and B1 have to be greater than 0 to get "positive". Hope this helps. Pete
Here's an example: =IF(AND(A1>0,B1>0),"Positive","not valid") Both A1 and B1 have to be greater than 0 to get "positive". Hope this helps. Pete