我正在尝试使用 VBA 中的“im exportissues 123456”查询从 PTC(MKS)获取 CR(更改请求)状态。但它确实会打开状态表(通过查询打开的新 excel 表),除非我的代码结束。下面是我的代码片段。
Sub Query_CR_Status()
shell_output = Shell("im exportissues 123456", 1) 'this should open up a new excel sheet containing CRs)
Application.Wait (Now + TimeValue("0:00:20")) 'waiting 20sec
'here: My code which will read information from the above generated excel sheet
End Sub
但我的问题是新的 excel 表不打开,除非它达到“结束子”