0
在Excel覆蓋表我有下面的代碼在Excel VBA我不能使用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中移動上一個表,而不是覆蓋它。
如何覆蓋舊錶?