» Nesting OR and AND Functions to Meet Multiple Criteria
CATEGORY - Excel Formula and Function
VERSION - All Microsoft Excel Versions
We want to check whether or not each value in List1 (column A) meets both of the following criteria:
1. The number must be even.
2. The number must be smaller than 3 or larger than 8.
Solution:
Use the AND, MOD, and OR functions as shown in the following formula:
=AND(MOD(A2,2)=0,OR(A2<3,A2>8))
Example:
List1____Result
2________TRUE
5________FALSE
4________FALSE
10_______TRUE

Book Store:
Recommended Books:
No comments have been submitted.


