G
Greg Maxey
What is the proper code exit all the way out from sub that
is called in a higher level routine?
Eample:
Sub BigOne()
Call LittleOne()
Blah,
Blah
End Sub
Sub LittleOne()
Blah,
If Blah = 1
Exit Sub
Blah
Blah
End Sub
If blah = 1 I want to exit to the all the way out of
Little and Big sub.
Thanks
is called in a higher level routine?
Eample:
Sub BigOne()
Call LittleOne()
Blah,
Blah
End Sub
Sub LittleOne()
Blah,
If Blah = 1
Exit Sub
Blah
Blah
End Sub
If blah = 1 I want to exit to the all the way out of
Little and Big sub.
Thanks