We will shortly migrate from Refinitiv Eikon to LSEG Workspace and I would like to understand whether the EikonRefresh functions in VBA will continue to work or whether a different approach will be needed.
Thanks,
Michail
@michail.paraskevopoulos
Thank you for reaching out to us.
I checkd and found that you can use the following code in Workspace Excel.
Sub WSRefreshSelection() DoEvents Application.Run "WorkspaceRefreshSelection", True, 120000 DoEventsEnd SubSub WSRefreshSheet() DoEvents Application.Run "WorkspaceRefreshWorksheet", True, 120000 DoEventsEnd SubSub WSRefreshWorkbook() DoEvents Application.Run "WorkspaceRefreshWorkbook", True, 120000 DoEventsEnd Sub
That is the kind of answer I was actually hoping for. Thus, I just need to replace the respective references in my code with the new functions and it will run as usual. Many thanks for sorting this out.
@Jirapongse Hello, could you please explain the meaning of the two arguments (True and 120000) passed to the refresh funtions ?
@NICOLAS.BARUSSAUD