That first AND clause requires that condition A be false in order for the IF statement to be considered true.
Understood, but would it stop immediately after it sees that condition A isn't what is expected, or does it still have to process the rest of the IF statement?
Alternately, I could write it like this:
IF Condition A = False THEN
IF Condition B AND Condition C . . . AND Condition Z THEN
END IF
END IF
And that would isolate that one condition, but again, I'm not sure if that's even necessary.