View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Tushar Mehta Tushar Mehta is offline
external usenet poster
 
Posts: 1,071
Default Advancing to the next iteration of a loop?

How's a 'Continue' or a 'Next for' or whatever any better than a goto?
All of them violate the basic premise of good programming: every block
of code must have a single entrypoint and a single exit point. One can
always use If...Then block. If the nested code is reasonably large use
or more subroutines.

Every language has its own set of compromises and limitations. If one
is so inclined there is something to whine about *every* language ever
developed. ;-)

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

In article ,
says...
"Jim Rech" wrote:
You just have to do something like this:


Ewwwwww. No wonder people whine about this language.

Well the good news is I wasn't just being dumb.

Maury