View Single Post
  #4   Report Post  
Don Guillett
 
Posts: n/a
Default

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


--
Don Guillett
SalesAid Software

"thrava" wrote in message
...
I like to refer to another macro within another macro.

Is this possible?
Does this work?

sub macro1()
...
...

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

....
....
end sub
?