Reputation:
i am trying to figure out how to use IF AND
,, or IF OR
but i need little help here
the value must be in A1:A20 ,, B1:B20
=IF(A1:A20=6050 and B1:B20 =3011 ;"Value achived";"try Again")
Upvotes: 0
Views: 11
Reputation: 136
it work like this IF(AND(log1;log2....
=IF(AND(A1:A20=6050;B1:B20=3011);"Value achived";"try Again")
Upvotes: 1