Automate_It
New Member
- Joined
- Jun 27, 2018
- Messages
- 2
I'm curious what the community has to say about this:
Which option would be considered Best Practice for calling multiple subs? Aside from speed, which I'm not overly concerned about, does one have an advantage over the other? Why?
Option A:
Option B:
Which option would be considered Best Practice for calling multiple subs? Aside from speed, which I'm not overly concerned about, does one have an advantage over the other? Why?
Option A:
Code:
Sub CallingAllSubs()
Call Sub2
Call Sub3
Call Sub4
Call Sub5
End Sub
Option B:
Code:
Sub CallOneSub()
Call Sub2
Call Sub3
End Sub
Sub Sub3()
Call Sub4
Call Sub5
End Sub