Quote Originally Posted by mpgmike View Post
I think it's a method of skipping other IF/THEN options.

It could also be structured with...

IF This THEN
do something
ELSEIF That THEN
do something else
ELSE None of the above
Don't do anything
ENDIF

Only 1 option will be selected, forcing a break from the test once a match is found.
Got it

Thank you