Help with code for add in

  • Thread starter Thread starter Quanchi
  • Start date Start date
Q

Quanchi

Hello,

I need some help with som VB code. When an Excel file is opened,
need it to check to see if the Analysis ToolPak addin is checked...i
it isn't checked...it checks it...if it is checked, it does nothing.


Any ideas?

Thanks,

Quanch
 
One way:

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

Back
Top