Call a macro in my personal.xls

R

Robert Rosenberg

Here's one example:

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

Where:

"Test" is the name of the macro
 
G

Greg Rivet

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
 
Top