Call a macro in my personal.xls

  • Thread starter Thread starter Greg Rivet
  • Start date Start date
G

Greg Rivet

What is the syntax for calling a macro that resides in my personal.xls. TIA
 
Here's one example:

Sub CallPersonalMacro()
Application.Run "Personal.xls!Test"
End Sub

Where:

"Test" is the name of the macro
 
Bob, thank you very much................

Greg
Robert Rosenberg said:
Here's one example:

Sub CallPersonalMacro()
Application.Run "Personal.xls!Test"
End Sub

Where:

"Test" is the name of the macro
 

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