Analysis ToolPak - enable it programmatically?

  • Thread starter Thread starter davidfox
  • Start date Start date
D

davidfox

I have a spreadsheet that requires the Analysis ToolPak add-in.

But our IT Department keeps (inadvertently?) turning it off every tim
they push out new group policies.

Is there a way to enable it from within a piece of VBA code or a macro
 
Just record a macro as you do it manually.

--
Jim
message |
| I have a spreadsheet that requires the Analysis ToolPak add-in.
|
| But our IT Department keeps (inadvertently?) turning it off every time
| they push out new group policies.
|
| Is there a way to enable it from within a piece of VBA code or a macro?
|
|
| --
| davidfox
| ------------------------------------------------------------------------
| davidfox's Profile:
http://www.excelforum.com/member.php?action=getinfo&userid=29808
| View this thread: http://www.excelforum.com/showthread.php?threadid=495152
|
 
Great, I didn't know macros could record what you do in the menus.

The code ended up being:

AddIns("Analysis ToolPak").Installed = True

Thanks..
..d
 

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