貼我有兩個工作簿1. thisWB 2. newWB
現在我需要把數據從thisWB的lastblank排+ 1 newWB工作簿中複製和lastblank排+ 1粘貼。
我已經把一些代碼象下面,但它不工作,你可以建議的是與下面的代碼COPY最後一行從WB1和最後一行WB2
Application.ScreenUpdating = False
Dim LastRow As Long
LastRow = Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
Dim ws As Worksheet
Dim blankcell As Long
blankcell = Columns(1).Find("", LookIn:=xlValues, lookat:=xlWhole).Row
LastRow = Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
Windows(thisWB).Sheets("BS All Entities").Rows(blankcell + 1 & ":" & LastRow).Copy Destination:=Windows(newWB).Sheets("BS All Entities").Cells(Rows.Count, "A").End(xlUp).Offset(2, 0)
Application.ScreenUpdating = True
感謝您對所有您的幫助提前的問題。 KR 馬諾
'lastblank row + 1'?你的意思是來自上次使用的行的數據? – 2014-02-10 14:51:23