willfrederick
New Member
- Joined
- Mar 4, 2021
- Messages
- 2
- Office Version
- 365
- 2019
- 2016
- Platform
- Windows
Hello
I am looking to create a macro that would allow me to copy from one cell and paste into another cell then go back to original copied cell and move down one record.
For Example - Copy from R2 and Paste to C2 then
Move back to R2 and move down one row to R3
Copy R3 and paste to C2, etc. etc. Loop
i = 18 ' Start pasting into column R
' Loop until a blank cell is found
Do While Not Selection.Value = 0
With Sheets("Email Master").Cells(i + -16, 18)
' Select each cell in "Email Master", starting on R2
.Select
' Copy the value into "Email Master", starting on C2
Sheets("Email Master").Cells(3, 2).Value = .Value
End With
Loop
Any help would be amazing.
Thanks
Will
I am looking to create a macro that would allow me to copy from one cell and paste into another cell then go back to original copied cell and move down one record.
For Example - Copy from R2 and Paste to C2 then
Move back to R2 and move down one row to R3
Copy R3 and paste to C2, etc. etc. Loop
i = 18 ' Start pasting into column R
' Loop until a blank cell is found
Do While Not Selection.Value = 0
With Sheets("Email Master").Cells(i + -16, 18)
' Select each cell in "Email Master", starting on R2
.Select
' Copy the value into "Email Master", starting on C2
Sheets("Email Master").Cells(3, 2).Value = .Value
End With
Loop
Any help would be amazing.
Thanks
Will