Copy and paste one cell into 48 and then repeat
Closed
katie456
-
Oct 29, 2018 at 01:05 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Oct 29, 2018 at 11:52 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Oct 29, 2018 at 11:52 AM
Related:
- Copy and paste one cell into 48 and then repeat
- Copy and paste fonts - Guide
- Based on the cell values in cells b77 ✓ - Excel Forum
- If cell contains date then return value ✓ - Excel Forum
- Excel "IF" function w/ date in test cell ✓ - Excel Forum
- This message was deleted text copy and paste - Android Forum
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Oct 29, 2018 at 11:52 AM
Oct 29, 2018 at 11:52 AM
Hi Katie,
Give the following code a try:
Best regards,
Trowa
Give the following code a try:
Sub RunMe() Dim x As Integer x = 2 For Each cell In Range("J2:J389") cell.Copy Range(Cells(x, "G"), Cells(x + 47, "G")) x = x + 48 Next cell End Sub
Best regards,
Trowa