Hi everyone,
I'm trying to structure a program quickly to understand it better.It's got about 11 pages worth of code running in one particular sub. I added a procedure and cut and pasted what seemed to be one process, but it's got a condition with "end for" in it. It occured to me I didn't know how to this.Any Help?
SUEDO CODE EXAMPLE:

Public sub One ()
one zillion things
For loop = 1 to Bazillion
one trizillion things
Next loop
End Sub

Public sub two()
sub-set of one zillion things
if this_thing then Exit For(from sub One)
rest of subset
End Sub