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
In your workbook you write:
Sub test() ' from other excel file Application.Run ("youraddin.xla!ShowForm") End Sub
And in the addin you have
Public Sub ShowForm() loginform.Show End Sub