Three ways to handle multiple conditions in an IF function. Episode recap: The simplest IF function is =IF(Logical Test,Formula if True, Formula if False)
But what to you do if you have to test two conditions?
Many people will do =IF(Test 1, IF(Test 2, Formula if True, False), False)
This gets unwieldy if 3, 5, 17 conditions!
Instead, use =IF(AND(t1,t2,t3,t4),Formula if True, Formula if False)
If you like AND, consider OR, NOT for other situations
NAND can be done with NOT(AND())
NOR can be done with NOT(OR())
Be careful when using XOR as the results are not what you expect