Copy X Row N Number of Times

Solved/Closed
lionsclaw Posts 1 Registration date Tuesday May 20, 2014 Status Member Last seen May 20, 2014 - May 20, 2014 at 03:00 AM
 smiller1712 - Jul 21, 2014 at 10:08 AM
Hi.

I need the formula to Copy X Row N No.of Times.
For Example

Col 1 Col 2
ABC 3
DEF 5
GHI 4


Outcome
Col 3
ABC
ABC
ABC
DEF
DEF
DEF
DEF
DEF
GHI
GHI
GHI
GHI
Related:

1 response

TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 552
May 20, 2014 at 11:00 AM
Hi Lionsclaw,

The following code will do as requested:
Sub RunMe()
Dim lRow As Long
Dim x, MyCount As Integer

lRow = Range("A1").End(xlDown).Row

For Each cell In Range("A1:A" & lRow)
    cell.Copy
    MyCount = cell.Offset(0, 1)
    
    Do
        x = x + 1
        Range("C" & x).PasteSpecial
        MyCount = MyCount - 1
    Loop Until MyCount = 0
Next cell
        
Application.CutCopyMode = False
End Sub


Best regards,
Trowa
3
Brilliant. Saved me a lot of time.

Thanks,
0