title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.AddIns2 property (Excel) |
vbaxl10.chm133322 |
|
|
3fd3de81-beae-c5b0-572d-c3f81e251db2 |
04/04/2019 |
medium |
Returns an AddIns2 collection that represents all the add-ins that are currently available or open in Microsoft Excel, regardless of whether they are installed. Read-only.
expression.AddIns2
expression A variable that returns an Application object.
This example displays the status of the Analysis ToolPak add-in. Note that the string used as the index to the AddIns2 collection is the title of the add-in, not the add-in's file name.
If Application.AddIns2("Analysis ToolPak").Installed = True Then
MsgBox "Analysis ToolPak add-in is installed"
Else
MsgBox "Analysis ToolPak add-in is not installed"
End If
[!includeSupport and feedback]