Hi everyone,
Here is the code I have so far:
Sub ValuePaste()
Dim loLastRow As Long
ThisWorbook.ActiveSheet.Range("E9").Copy
With Workbooks("test.xlsx").Worksheets("test")
loLastRow=.Cells(Rows.Count,3).End(xlUp).Row + 1
.Range("C & loLastRow).Paste.Special Paste:=xlPasteValues
EndWith
End Sub
What I want to add is a way to copy and paste more than one cell to another column
Like E11 to D, E14 to F, etc
I think it should be easy but Im having a hard time figuring out
Can anyone help?
Thanks in advance!
Here is the code I have so far:
Sub ValuePaste()
Dim loLastRow As Long
ThisWorbook.ActiveSheet.Range("E9").Copy
With Workbooks("test.xlsx").Worksheets("test")
loLastRow=.Cells(Rows.Count,3).End(xlUp).Row + 1
.Range("C & loLastRow).Paste.Special Paste:=xlPasteValues
EndWith
End Sub
What I want to add is a way to copy and paste more than one cell to another column
Like E11 to D, E14 to F, etc
I think it should be easy but Im having a hard time figuring out
Can anyone help?
Thanks in advance!