I am mystified why people will check if a worksheet exists by using the negative:

If NOT worksheet is nothing then
exists
else
does not exist
endif


VERSUS



if worksheet is nothing then
does not exist
else
does exist
endif


the latter code seems significantly more clear to me. Any insights?