In my mind the test "IF(VAR1>1 AND VAR2=0,TRUE,FALSE)" makes sense, but I find that Excel won't accept the AND command within the logical test of IF. Instead I've worked around it by nesting the them "IF(VAR1>1,IF(VAR2=0,TRUE,FALSE),FALSE)".
After the 8 or so AND's that are required in one test it becomes very messy.
Is there a better way?
After the 8 or so AND's that are required in one test it becomes very messy.
Is there a better way?