Hi,
I have formulas from A5:A100 that I would like to paste in e5:e100 all the way down to CD5:cd100.
The following example is wat i have to paste to 3 columns from rows 1 - 23. Do I need to type in the range for the next 50 columns that I need pasted or is there something shorter? Again, I have to paste out to every forth columns up until CD1:CD23, and beyond. ALSO, I NEED TO COPY FORMULAS, NOT VALUES.
Sub Paste_Range()
'Copy and Paste a Range of Cells
Range("A1:A23").Copy Range("e1:e23")
Range("A1:A23").Copy Range("i1:i23")
Range("A1:A23").Copy Range("q1:q23")
Application.CutCopyMode = False
End Sub
I have formulas from A5:A100 that I would like to paste in e5:e100 all the way down to CD5:cd100.
The following example is wat i have to paste to 3 columns from rows 1 - 23. Do I need to type in the range for the next 50 columns that I need pasted or is there something shorter? Again, I have to paste out to every forth columns up until CD1:CD23, and beyond. ALSO, I NEED TO COPY FORMULAS, NOT VALUES.
Sub Paste_Range()
'Copy and Paste a Range of Cells
Range("A1:A23").Copy Range("e1:e23")
Range("A1:A23").Copy Range("i1:i23")
Range("A1:A23").Copy Range("q1:q23")
Application.CutCopyMode = False
End Sub
Last edited: