I want the VBA code which can check if the add-in exists in the list of add-ins
Something like
If Application.AddIns("Upload Button") Exists Then
Application.AddIns("Upload Button").Installed = False
End If
Hit me back!
EDIT: I solved this using On Error Resume Next
On Error Resume Next
Application.AddIns("Upload Button").Installed = False
On Error Goto 0