AND Function
AND Function
This is a logical function that only returns TRUE or FALSE. If all criteria asked in the function
are TRUE, then this returns a TRUE. Otherwise it returns a FALSE.
In this example, we want to see if each person scored over 200 in ALL games. So we put the
AND function in cells E2 to E5 because the AND function requires ALL items to be TRUE
So we go to E2 and go to the wizard.
Logical1 : This is our first test. Is cell B2 greater than 200. Result is FALSE.
Logical2 : This is our first test. Is cell C2 greater than 200. Result is FALSE.
Logical3 : This is our first test. Is cell D2 greater than 200. Result is FALSE.
=AND(B2>200,C2>200,D2>200)
The total formula returns a FALSE because not all of the results were TRUE. In cell E4, when
we check if B4, C4 and D4 are greater than 200, since they all are, E4 would be TRUE.
=AND(B4>200,C4>200,D4>200) equals TRUE
www.ExcelByJoe.com