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))
The applications/code on this site are distributed as is and without warranties or liability. In no event shall the owner of the copyrights, or the authors of the applications/code be liable for any loss of profit, any problems or any damage resulting from the use or evaluation of the applications/code.