Call a macro in my personal.xls

  • Thread starter Thread starter Greg Rivet
  • Start date Start date
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
 
Back
Top