question

Upvotes
Accepted
31 1 1 3

Can I Control Eikon Excel AddIn for refresh a WorkSheet with VBA ??

eikoneikon-com-apivbarefreshworksheet
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvote
Accepted
39.4k 77 11 27

Hi @sanedrak,

The answer is yes, and there are two sets of macros to facilitate this.

PLxxxxEventHandler macros are behind the Refresh commands in Thomson Reuters ribbon and refresh both Eikon Excel and TF functions. The four macros are:

1 - Application.Run "PLRefreshAllEventHandler" to refresh functions in all open workbooks

2 - Application.Run "PLRefreshWorkbookEventHandler" to refresh functions in the current workbook

3 - Application.Run "PLRefreshWorksheetEventHandler" to refresh functions in the current worksheet

4 - Application.Run "PLRefreshSelectionEventHandler" to refresh functions in the selected range

The above commands are executed asynchronously.

The following Refresh commands allow for a synchronous refresh to occur (one line of VBA code needs to finish executing before the next line can begin). Note they do not refresh TF functions:

1 - Application.Run "EikonRefreshSelection"

2 - Application.Run "EikonRefreshWorksheet"

3 - Application.Run "EikonRefreshWorkbook"

4 - Application.Run "EikonRefreshAll"

The first two (optional) parameters for all 4 macros above are waitForRefresh(boolean) & timeout, e.g.

Application.Run "EikonRefreshSelection", True, 3000 or Application.Run "EikonRefreshSelection", CBool(Sheet1.Range("A1")), CLng(Sheet1.Range("A2"))

If waitForRefresh is True, code will continue after the timeout in milliseconds even if the refresh isn't done. Both parameters are optional - the waitForRefresh default is true & timeout default is 30000 (30 seconds).

1 - EikonRefreshSelection takes a third optional parameter rangeToRefresh. This is an address (short or external) of the range to refresh.

2 - EikonRefreshWorksheet takes a third optional parameter worksheetToRefresh. This is the name of the worksheet to refresh. It can be in "[Book1]Sheet1" format to refresh a sheet in a workbook that isn't in the foreground. Or just "Sheet1" which will look for the sheet in the ActiveWorkbook.

3 - EikonRefreshWorkbook takes a third optional parameter workbookToRefresh. This is the name of the workbook to refresh.

All 4 macros will return the number of functions refreshed when all completed or timed out when waitForRefresh is true.

Both sets of macros (PLxxxEventHandler and EikonRefreshxxxx) do not require any references to any dlls.

Best regards,

Alex

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi and thanks a lot for sharing these methods.

Is it possible to force a clear of the cache using a similar method ?

Thanks,

Alec

Alex Putkov.1 avatar image Alex Putkov.1 alexander.litster-consultant

No, it's not possible. You can clear Eikon User cache by running "Eikon.exe -clearcache -a -commandline". But this operation requires that Eikon is shut down. You cannot perform it while Eikon is running or while Eikon Excel add-in is signed in.

Hi Alex, Ok understood for this.

Thanks for the help and have a good day!

Alec

Upvotes
31 1 1 3

thx!!!

Sometimes Reuters showme the text "Stale" into cell of Excel.

Now I can find de text "Stale", and force a refresh!!!!

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.