L
Lars Brownie
I often stumble across the question of wether it's better to write:
if then
exit sub
endif
etc.
or to nest all my if-endifs in one big if endif.
if then
if then
if then
endif
endif
endif
I once heared that the latter is the 'standard' but often I find it harder
to read.
Is there perhaps a rule of thumb for this?
Thanks, Lars
if then
exit sub
endif
etc.
or to nest all my if-endifs in one big if endif.
if then
if then
if then
endif
endif
endif
I once heared that the latter is the 'standard' but often I find it harder
to read.
Is there perhaps a rule of thumb for this?
Thanks, Lars