How can I open a print quote from Refinitiv Workspace VBA

mohamed.fakhfakh
mohamed.fakhfakh Newcomer
edited May 19 in Eikon COM

Hello I'm using workspace , could you please tell me how i can open a print quote from refinitiv workspace VBA ? I used "reuters://REALTIME/verb=FullQuote/ric= on refinitiv EIKON excel , but with Workspace excel , it doesn't work

I want to open a refinitiv quote from excel , do a print screen , copy/paste on an excel file

Could you please help me ?

Answers

  • Jirapongse
    Jirapongse ✭✭✭✭✭

    @mohamed.fakhfakh

    Thank you for reaching out to us.

    You can check the progress by directly contacting the helpdesk team via MyAccount and referring to this case (13703706).

    I tested it and I can use the "reuters://REALTIME/verb=FullQuote/ric=" in VBA by using the following code.

    Sub Test()
    Dim URL As String
    URL = "reuters://REALTIME/verb=FullQuote/ric=IBM.N"
    ActiveWorkbook.FollowHyperlink URL
    End Sub