G Greg Rivet Jan 7, 2004 #1 What is the syntax for calling a macro that resides in my personal.xls. TIA
R Robert Rosenberg Jan 8, 2004 #2 Here's one example: Sub CallPersonalMacro() Application.Run "Personal.xls!Test" End Sub Where: "Test" is the name of the macro
Here's one example: Sub CallPersonalMacro() Application.Run "Personal.xls!Test" End Sub Where: "Test" is the name of the macro
G Greg Rivet Jan 8, 2004 #3 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 Click to expand...
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 Click to expand...