Tip Printed from ExcelTip.com
Nesting OR & AND Functions to Meet Multiple Criteria
Problem:
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))