Bloomberg - 刷新工作簿如何调用

Bloomberg - Refresh Workbook how to call

想知道有没有什么办法:

Bloomberg - > Refresh Workbook

但不是用我的手和 VBA 或使用其他东西..:[=​​14=]

Workbook.calculate 有时不起作用公式得到 #N/A Requesting Data... 因为数据没有按时加载..

我真的需要找到一个 100% 有效的方法来做,否则如果它有时失败,那可能是个大问题

您可以在 bloomberg 插件中使用以下程序

Application.Run "RefreshCurrentSelection"

Application.Run "RefreshEntireWorksheet"

Application.Run "RefreshEntireWorkbook"

Application.Run "RefreshAllWorkbooks" 

Application.Run "RefreshAllStaticData"    
Application.Run "RefreshData"

对于 CurrentSelection 你必须先 select 想要的数据

ThisWorkbook.Worksheets("Sheet1").Range("YourData").Select
Application.Run "RefreshCurrentSelection"