0
我試圖將數據從一個工作簿複製到另一個工作簿。我已經可以做到這一點,但我無法將數據向下偏移一些行。我的代碼的最後部分是我的問題。使用VBA從現有數據向下偏移目標數據
Sub T1()
Dim sourceTitle As Range, targetTitle As Range
Set sourceTitle = Workbooks("Data to Copy.xlsm").Worksheets(2).Columns("B")
Set targetTitle = Workbooks("Data
Destination.xlsm").Worksheets(1).Columns("A")
sourceTitle.Copy Destination:=targetTitle.Cells(Rows.Count, 1).End(xlUp).Offset(2, 0)
End Sub
嘗試targetTitle.Cells(Rows.Count,1).END(xlUp).row.Offset(2,0)。以前從來沒有見過這樣做。我可以用這個:) – Hrothgar
其他建議?我得到運行時錯誤'424':需要對象 – Chris