running a macro from an add-in
Posted
by every_answer_gets_a_point
on Stack Overflow
See other posts from Stack Overflow
or by every_answer_gets_a_point
Published on 2010-05-11T20:14:40Z
Indexed on
2010/05/11
20:54 UTC
Read the original article
Hit count: 164
i have an add-in called book1. inside the addin there is a module called module1 which has a sub called addin1
i would like to run the macro addin1 from a different workbook
i am trying to call this macro like this:
Call Addin1
but that's not working
and i tried:
Call book1.xlam.Module1.AddIn1
which is not working either
does anyone know how to run a macro that is within an add-in ?
© Stack Overflow or respective owner