PC Review


Reply
Thread Tools Rate Thread

Automatically installing and running the Analysis ToolPak add-in

 
 
Mas
Guest
Posts: n/a
 
      1st Nov 2006
Hi all,

I was wondering if it is at all possible to create some coding that I
can add to my worksheet that will load the Analysis ToolPak add-in (if
not already installed), activate it (so I can use one of it's
functions), automatically recalculate the worksheet and then deactivate
the add-in once my worksheet has been updated.

This would save me a lot of time manually installing the add-in
personally on every computer of the people who want to review my worksheet.

Thanks in advance

Mas
 
Reply With Quote
 
 
 
 
=?Utf-8?B?VG9tIE9naWx2eQ==?=
Guest
Posts: n/a
 
      1st Nov 2006
Here is some code by Dana deLouise that installs the solver addin. You
should be able to adapt it to the analysis toolpak:

ub SolverInstall()
'// Dana DeLouis
Dim wb As Workbook

On Error Resume Next
' Set a Reference to the workbook that will hold Solver
Set wb = ActiveWorkbook

With wb.VBProject.References
.Remove .Item("SOLVER")
End With

With AddIns("Solver Add-In")
.Installed = False
.Installed = True
wb.VBProject.References.AddFromFile .FullName
End With
End Sub

Application.Calculate

will do a calculate.

--
Regards,
Tom Ogilvy


"Mas" wrote:

> Hi all,
>
> I was wondering if it is at all possible to create some coding that I
> can add to my worksheet that will load the Analysis ToolPak add-in (if
> not already installed), activate it (so I can use one of it's
> functions), automatically recalculate the worksheet and then deactivate
> the add-in once my worksheet has been updated.
>
> This would save me a lot of time manually installing the add-in
> personally on every computer of the people who want to review my worksheet.
>
> Thanks in advance
>
> Mas
>

 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Analysis Toolpak-Confidence Level and data analysis questions MH Microsoft Excel Worksheet Functions 0 3rd Jan 2009 06:15 PM
installing Analysis toolpak in Excel 2002 without the installation Obrad Microsoft Excel Misc 1 31st Jul 2008 06:07 PM
installing add-in analysis toolpak Janiv Ratson Microsoft Excel Discussion 3 17th Jun 2005 11:49 AM
installing add-in analysis toolpak Janiv Ratson Microsoft Excel Misc 3 17th Jun 2005 11:49 AM
Automatically loading Analysis ToolPak add-in lbyrnes Microsoft Excel Setup 1 7th Sep 2003 08:38 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:18 PM.