one macro calls the other

  • Thread starter Thread starter ebony
  • Start date Start date
E

ebony

Hello everyone,
I have two macros that i want to run after the other. I am
unable to combine them because the macro is too large. So
i have divided them. However, i will like to create a
macro that can call the other macro. Basically, the macros
are supervisor and supervisor1. I want supervisor to call
supervisor1 once it has finished running.
thanks everyone
 
Call Supervisor1 at end of Supervisor

sub Supervisor

code here


call Supervisor1
end sub

Sub Supervisor1
code here
end sub
 
Back
Top