Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Anyone have any ideas how I can enable the analysis toolpak in Excel 2003
using a script of some kind to easily add this for every user on the network? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Set the Security level to low/medium in (Tools|Macro|Security). From workbook
launch VBE using short-key Alt+F11. On the left treeview double search for VBA Project for the workbook and click + to expand . Double click 'This Workbook ' and paste the below code..which should install ATP on workbook open Private Sub Workbook_Open() Dim strATP As String strATP = "Analysis ToolPak" ' "Analysis ToolPak - VBA" blnATP = Application.AddIns(strATP).Installed If Not blnATP Then Application.AddIns(strATP).Installed = True End Sub If this post helps click Yes --------------- Jacob Skaria "pete0085" wrote: Anyone have any ideas how I can enable the analysis toolpak in Excel 2003 using a script of some kind to easily add this for every user on the network? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2002 Analysis ToolPak Regression Analysis Help Requested | Excel Worksheet Functions | |||
Analysis Toolpak-Confidence Level and data analysis questions | Excel Worksheet Functions | |||
Add-in - Analysis ToolPak | Excel Discussion (Misc queries) | |||
Analysis toolpak | Setting up and Configuration of Excel | |||
Analysis ToolPak installed but no Data Analysis option | Excel Discussion (Misc queries) |