Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automatically install excel VBA add-in

I have written excel VBA add-in file (.xlam). I also have a exported ribbon customization (.exportedUI). How can I create an installer so that my users can just run the installer to install the excel VBA add-in and the ribbon customization?

like image 396
anirus Avatar asked Feb 22 '23 03:02

anirus


1 Answers

If you want a commercial tool, Advanced Installer has some built-in support for Office Add-in installers: http://www.advancedinstaller.com/user-guide/addins-tab.html

Another approach is using custom code to configure the add-in. Perhaps this will help: http://www.cpearson.com/excel/installinganxla.aspx

like image 146
rmrrm Avatar answered Feb 23 '23 15:02

rmrrm