Hi Johnny,
To call a routine from another you simply use it's name in the calling routine. Although I always include it for clarity, the Call statement is entirely optional, but if you use it it looks like this:
Program flow will start at A, go to B, return to A when B is complete, go to C, return to A when C is complete, then end.Code:Sub RoutineA() Call RoutineB Call RoutineC End Sub Sub RoutineA() 'Do something End Sub Sub RoutineB() 'Do something End Sub
HTH,
Bookmarks