Hi.
I am trying to copy two cells (B4) and (F23) tab ("Orig") and paste values tab ("Dest") but always beneath the cells of Column A and Column B
tab ("Dest")
I am trying to copy two cells (B4) and (F23) tab ("Orig") and paste values tab ("Dest") but always beneath the cells of Column A and Column B
tab ("Dest")
Code:
Private Sub Gravar_Click()
With Worksheets("Orig")
With .Range(Cells(4, 2), Cells(23, 6))
.Copy
End With
End With
Worksheets("Dest").[A65536].End(xlUp)(2).PasteSpecial Paste:=xlValues
'Sheets("Orig").Range(Cells(4, 2), Cells(23, 6)).Copy
'Worksheets("Dest").[A65536].End(xlUp)(2).PasteSpecial Paste:=xlValues
End Sub