Macro inside another macro?

  • Thread starter Thread starter thrava
  • Start date Start date
T

thrava

I like to refer to another macro within another macro.

Is this possible?
Does this work?

sub macro1()
....
....

sub Macro2()
....
....
end sub

.....
.....
end sub
?
 
Not like that. You can have macro code within a macro or call another macro
sub macro1
call macro2
end sub

or
sub macro1
macro2 code here
end sub
 
Back
Top