Forum Discussion
PhilB
4 years agoNew Contributor III
Hi Cosimo,
There is a OS Knowledge Base article about this: KB0010071
In practice, it looks something like this:
Sub RefreshXFFunctions() Set XFAddIn = application.COMAddIns("OneStreamExcelAddIn") If Not XFAddIn Is Nothing Then If Not XFAddIn.Object Is Nothing Then Call XFAddIn.Object.RefreshXFFunctions End If End IfEnd Sub
or
Sub RefreshCubeViews()
Set XFAddIn = application.COMAddIns("OneStreamExcelAddIn")
If Not XFAddIn Is Nothing Then
If Not XFAddIn.Object Is Nothing Then
Call XFAddIn.Object.RefreshCubeViews
End If
End If
End SubRelated Content
- 3 years ago
- 3 years ago