Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.07 KB

Excel.Application.AddIns2.md

File metadata and controls

41 lines (26 loc) · 1.07 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.AddIns2 property (Excel)
vbaxl10.chm133322
vbaxl10.chm133322
Excel.Application.AddIns2
3fd3de81-beae-c5b0-572d-c3f81e251db2
04/04/2019
medium

Application.AddIns2 property (Excel)

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.

Syntax

expression.AddIns2

expression A variable that returns an Application object.

Example

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]