Copy + Paste A Row x Times Based On Cell Value

JIMBOB77

New Member
Joined
Jul 17, 2018
Messages
13
Hi
I am looking for VBA code for the following.
I need to copy the current row and insert it "x" number of times.
The "x" value is the value in cell A1.
The copied rows will be inserted in the cells above the current row

Thanks
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Something like
Code:
Sub jimbob77()
   ActiveCell.EntireRow.Copy
   ActiveCell.EntireRow.Resize(Range("A1").Value).Insert
End Sub
 
Upvote 0
Thanks Fluff
Slight Alteration
What If The x Value Is In A Separate Sheet (Same Workbook)
Sheet Name = Import
Cell = J11
 
Upvote 0
I believe this will do it. I just tried it and it worked in the few tests I did.

Code:
Sub jimbob77()
    Dim import As Worksheet
    
    Set import = Sheets("Import")
    
   ActiveCell.EntireRow.Copy
   ActiveCell.EntireRow.Resize(import.Range("J11").Value).Insert
End Sub
 
Upvote 0
Another way
Code:
Sub jimbob77()
   Dim x As Long
   
   x = Sheets("Import").Range("J11").Value
   ActiveCell.EntireRow.Copy
   ActiveCell.EntireRow.Resize(x).Insert
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,472
Messages
6,125,003
Members
449,203
Latest member
Daymo66

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