How to insert a Macro within a macro?

  • Thread starter Thread starter Thrava
  • Start date Start date
T

Thrava

I have a sub Format()

and I want another macro called: AddRows()

To run in the middle of the sub Format()Macro.

What I did doesn't work.
I had Sub Format()
.....
.....

Sub AddRows()
End sub

.....
End Sub.

How can I do this?
 
Ahhaah,
Thank you

-----Original Message-----
try

Sub Format()
stuff
call AddRows()
End sub


--
Don Guillett
SalesAid Software
(e-mail address removed)



.
 
actually when I copied yours I forgot to remove the () after addrows.
It can be

call adrows
or just
adrows
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top