Tuicemen - I'm certainly not questioning your knowledge, but didn't you or Puck once post that one should include the conditions in an "ELSE" even when it's redundant?
I know I've had macros that simply wouldn't fire correctly unless the ELSE contained the alternative condition(s).
Or am I off base?
I often recommend that.
Else conditions do not always work as one expects and under certain circumstances they will all execute in parallel; so the only way to guarantee that only the intended macro gets executed everytime is to make each one mutually exclusive by including alternate conditions. I recommend it because it eliminates ordering concerns and improves reliability.
When a macro sting of elses do not execute as expected, it should be the first troubleshooting step.
P.S. It's only redundant when 2 or more else macros have the exact same conditions; which of course should never happen.