Thread: Subs
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Donna C Donna C is offline
external usenet poster
 
Posts: 14
Default Subs

I had one rather large sub that worked great, I broke down into 8 seperate
subs to simplify code changes later on.I have a user form with a run button.
Originally it ran the one sub and worked great.Now with it split into many
how do I go from one sub straight into the next one until all are run??? This
is what the code looks like with just one of the subs listed.
Thanks in advance,
Donna C.

Private Sub RUN_Click()
ThisWorkbook.Worksheets.Add
Questions
Me.Hide
Unload Test
End Sub