AddIns("Add-In Name").Installed = False
End Sub
Private Sub Workbook_Open()
AddIns("Add-In Name").Installed = True
End Sub
Automatically Loading Add-ins
Wednesday, 10 November 2010 by nkoknki |
0
comments
--Michael asked if there is a way to selectively load add-ins for specific worksheets. There is a way to do this, but it involves the use of macros attached to the Workbook module for the specific worksheets. Follow these general steps:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
--If you are not sure of the correct name for a particular add-in (see step 5), you can use the macro recorder to record the process of activating an add-in. That will show you the exact name you should use in the above macros.
Others tips
Source: Exceltips
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment