How to insert a Macro within a macro?

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?
 
D

Don Guillett

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

call adrows
or just
adrows
 
Top