I would like a macro to execute a number of times equal to the integer value in a specific cell
When Cell "A1" is populated with a positive whole number integer, I want the following macro to run a number of times equal to that integer.
Sub CopyRow()
Rows("2:2").Select
Selection.Copy
Rows("3:3").Select
Selection.Insert Shift:=xlDown
Application.CutCopyMode = False
End Sub