Analysis Toolpak

N

News

Ive written a spreadsheet that utilises a workday function through the
analysis toolpak add in. As the spreadsheet is to be distributed to users I
have no way of turning the Analysis toolpak on automatically when they enter
the worksheet. Can this be done thought a Macro?

thanks
 
D

David J. Braden

You could follow Gordon's suggestion, of course, but for whatever
reason, many folks don't have the ATP installed. How about just
replicating the function in VBA using Excel's built-in functions?

Dave Braden
 
K

Kent Schederin

Hi

Put this code in your workbook module

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

Kent Schederin
 
N

News

Perfect

Many Thanks
Mark

Kent Schederin said:
Hi

Put this code in your workbook module

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

Kent Schederin

users
 
Top