Calling MACROS from Excel ADD-IN
Posted by bill.roberts on March 10, 2000 11:50 AM
Accoring to MICROSOFT,
Application.Run("ADDIN.XLA!Macro_Name")
Will call a MACRO from an ADDIN.
Now, is it possible to assign such a statement to a button?
In this way, portability is way improved.
The alternative is to bridge through an intermediate routine.
I would envision calling a macro from the PERSONAL.XLS that would in turn call the macro within the ADD-IN.
So,
Application.Run("ADDIN.XLA!Macro_Name")
Will call a MACRO from an ADDIN.
Is it possible to assign such a statement to a button?