Macro to enable the analysis toolpak VBA addin on entering a workbook??

B

bsnapool

Hi

wondering if anyone can help me?

I would like upon opening excel sheet, to automatically enable the
analysis TOOLPAK VBA addin.

IS this possible?

Thanks

Andrew
 
G

Guest

Put in the ThisWorkbook module:

Private Sub Workbook_Open()
AddIns("Analysis ToolPak").Installed = True
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top