Here is my current Marco: It will not copy 26 . And i cant figure out how to have it read another another Worksheet to apply unit numbers to each of the 26 Copies separately.
Like the first copy lines of 189 in Cell U1 all the well down to U189 = Sheet 2 A1 and so on an so on from Sheet 2 which has 26 Unit Numbers
Sub copy()
Dim rng As Range, i As Integer, n As Long
Dim R As Integer
Set rng = Range("A1", "T189")
R = 189
n = 0
i = InputBox("Enter repetitions")
Do Until n = i + 1
rng.copy Destination:=Range("A" & R + 1)
n = n + 1
R = R * (n + 1)
Loop
End Sub