軟體:EXCEL
版本:2010
您好
我用錄製巨集方式產生下列VBA指令
With ActiveSheet.QueryTables.Add(Connection:= _
filepath1, Destination _
:=Range("$A$1"))
現在我想修改產出資料儲存格放置的位置,也就是原本是在A1這個位置
但是現在我想改成動態的,我試了幾個方式,都顯示錯誤,例如:
With ActiveSheet.QueryTables.Add(Connection:= _
filepath1, Destination _
:=Range(工作表1.Cells(1, 1)))
With ActiveSheet.QueryTables.Add(Connection:= _
filepath1, Destination _
:=Range('工作表1'.Cells(1, 1)))
With ActiveSheet.QueryTables.Add(Connection:= _
filepath1, Destination _
:=Range("'工作表1'.Cells(1, 1)"))
請教我該如何表示才是正確的呢?感謝回復