Copy, paste x 12, offset, repeat - how?

Harshbitterness

New Member
Joined
Apr 1, 2025
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hello, friends!

Been trying to figure out how to do this. My VBA-fu is quite weak.

I want to create a macro that copies A2, pastes it twelve times, then copies A3 and pastes that directly below. Repeating the process until there are no more values to be copied.

Any suggestions? Thank you very much in advance!

1743522670584.png
 
Try.

VBA Code:
Sub Repeat12()
    For Each x In Range("A2:A4")
        myText = myText & WorksheetFunction.Rept(x & ",", 12)
    Next x
    
    mySplit = Split(myText, ",")
    
    Range("C2").Resize(UBound(mySplit) + 1) = WorksheetFunction.Transpose(mySplit)
End Sub
 
Upvote 0
You could do that with a formula
Excel Formula:
=TOCOL(IF(SEQUENCE(,12),TRIMRANGE(A2:A1000)))
 
Upvote 0
Or with a macro
VBA Code:
Sub Harshbitterness()
   Dim Ary As Variant
   
   Ary = Evaluate("TOCOL(IF(SEQUENCE(,12),TRIMRANGE(A2:A1000)))")
   Range("C2").Resize(UBound(Ary)).Value = Ary
End Sub
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top