Analysis Toolpak

  • Thread starter Thread starter News
  • Start date Start date
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
 
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
 
Hi

Put this code in your workbook module

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

Kent Schederin
 
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
 
Back
Top