How to refresh/load RTD Bloomberg function (BDH) in excel in vba

前端 未结 4 1027
梦如初夏
梦如初夏 2020-12-09 06:25

I would like to know if there\'s a way in VBA code forcing the bloomberg functions (In spreadsheet) to update its value( Any BDH functions)

Targeting Develo

4条回答
  •  一个人的身影
    2020-12-09 07:00

    This works for me:

    WS.Select
    WS.Range("A5").Select 'the cell that contains the BDH function
    Application.Run "RefreshCurrentSelection"
    

提交回复
热议问题