Macro to copy/paste specific range every 3 rows
Solved/Closed
Related:
- Macro to copy/paste specific range every 3 rows
- Psiphon 3 - Download - VPN
- Hitman 3 cheats - Guide
- How do i find a specific video on youtube - Guide
- How to copy paste youtube link on android - Guide
- How to increase wifi range - Guide
1 response
TrowaD
Posts
2921
Registration date
Sunday 12 September 2010
Status
Contributor
Last seen
27 December 2022
555
7 Jul 2015 à 11:56
7 Jul 2015 à 11:56
Hi Isa,
See if the following code works for you:
Best regards,
Trowa
See if the following code works for you:
Sub RunMe()
Dim x As Integer
x = 2
Do
Range(Cells(x, "BG"), Cells(x, "FJ")).Cut Sheets("Worksheet1").Cells(x + 1, "E")
Range(Cells(x + 1, "BG"), Cells(x + 1, "DH")).Cut Sheets("Worksheet1").Cells(x + 2, "E")
x = x + 3
Loop Until x > 4000
End Sub
Best regards,
Trowa
7 Jul 2015 à 12:51
You just saved my day! :))
Best regards,
Isa