我在excel VBA中有以下代码
'Create query table to hold the rates.
With objBK.Worksheets(1)
Set objQT = .QueryTables.Add( _
Connection:="URL;https://xxx.output=XLS", _
Destination:=.Range("A1"))
End With
https://xxx.output=XLS
返回一个写在我工作表的 A1 单元格中的 XLS 表。
问题是每次我运行这个查询时,它都会在 A1 中添加表,移动前一个表而不是覆盖它。
如何覆盖旧表?