gheyman
Well-known Member
- Joined
- Nov 14, 2005
- Messages
- 2,298
- Office Version
- 365
- Platform
- Windows
I'm trying to copy data from Cell A1 and paste it on another form all the way down to the last row (Paste/repeat the same data in each row)
But it doesn't like my paste range. Thanks for the help
But it doesn't like my paste range. Thanks for the help
Code:
Sub Fill_CBOM()
'Author: G Heyman 190217
'Fill Additional Data
Application.ScreenUpdating = False
ActiveSheet.AutoFilterMode = False
Dim IMDLstRw As Long
IMDLstRw = Sheet5.Range("A" & Rows.Count).End(xlUp).Row
'Component Qty
Sheet1.Range("A1").Copy
Sheet2.Range("A9:A" & IMDLstRw).Selection
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub