Sub test()
Sheets("sheet1").Range("A2:B2").Copy ' copy 位置 :修改點
On Error Resume Next
Dim myClms As Range
Dim myRng As Range
Set myClms = Sheets("Sheet2").Columns("A:A") '任意的欄範圍
With myClms
Set myRng = .Find(What:="*", After:=.Cells(1), _
LookIn:=xlFormulas, Searchorder:=xlByRows, _
SearchDirection:=xlPrevious)
End With
myRng.Offset(1, 0).PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False