The Name property of the IOlapAddIn interface returns the name of your add-in program to the calling program. The value of this property is used to identify the program that provides objects to the OLAP Add-In Manager.
Use this property to return the name of your custom add-in program.
Private ThisAddInName = "MySampleAddIn"
'More code
Private Property Get IOlapAddIn_Name() As String
On Error Resume Next 'Defer errors
IOlapAddIn_Name = ThisAddInName
Err.Clear 'clears errors if any occurred
End Property