The OneStream Community is temporarily frozen until June 29th due to the ongoing maintenance. Please read the blog post here to learn more.
Forum Discussion
BenEppel
3 years agoContributor
Table View VBA Refresh
Hello,
I was wondering if anyone has been able to get a table view to refresh using VBA.
I have tried the below code with no luck.
Sub RefreshXFFunctions()
Set XFAddIn = Application.COMAddIn...
BenEppel
3 years agoContributor
Thank you for the suggestions! I submitted the request here https://community.onestreamsoftware.com/t5/Productivity/Table-View-VBA-Refresh/idi-p/14776#M266
JennyCalvache
3 years agoNew Contributor III
Hello, I was able to refresh with the following codes.
Set xfaddIn = Application.COMAddIns("OneStreamExcelAddIn")
If Not xfaddIn Is Nothing Then
If Not xfaddIn.Object Is Nothing Then
xfaddIn.Object.ShowParametersDlgForActiveWorksheet
xfaddIn.Object.RefreshXFFunctionsForActiveWorksheet
End If
End If
Hopefully this one helps if anyone needs to refresh Table view. However I can't refresh Table view without using xfaddIn.Object.ShowParametersDlgForActiveWorksheet. Does anyone know how?
Thanks in advance.
- vignesh2 years agoNew Contributor II
Hello All, I am trying to avoid the step where user manually login in the excel OneStream Ribbon and then perform the Refresh Sheet with the macro button.
Is there any function to login in the VBA code before the refresh..
Related Content
- 2 years ago
- 2 years ago
- 3 years ago