Hi everyone,
I use the VBA-Code to load the AO 2.0 Addin
Private Sub EnableAnalysisOffice()
Dim addin As COMAddIn
For Each addin In Application.COMAddIns
If addin.progID = "SapExcelAddIn" Then
If addin.Connect = False Then addin.Connect = True
End If
Next
End Sub
This works perfect, but when I want to use the Analysis Functions like =SAPListOF or something else, I get an error that there are no macros available.
When I look in the functions I see the following picture.
There is no Analysis Functions. The same Coding works in AO 1.4 perfect.
Did I miss something? Any suggestions?
Thanks for your help.
Tobias