Wedne5day1te
New Member
- Joined
- Aug 5, 2018
- Messages
- 7
I have a large spreadsheet with different columns with varyingnumbers of product item rows below each SKU heading. I have a routine whichcopies the product range and dumps this into column B in Sheets("Dump").This works ok.
Set ActSheet = ActiveSheet
ActSheet.Range("A" & Product &":" & "A" & LastRowColA).Copy
With Sheets("Dump")
.Range("B" & .Rows.Count).End(xlUp).Offset(1).PasteSpecialPaste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False
End With
I then want to copy the SKU code which is the value in "SKURange"to the Dump worksheet column A into the first blank row in column A and autofillto the last row determined by the last row in the adjacent column B.
Thanks for your help
Set ActSheet = ActiveSheet
ActSheet.Range("A" & Product &":" & "A" & LastRowColA).Copy
With Sheets("Dump")
.Range("B" & .Rows.Count).End(xlUp).Offset(1).PasteSpecialPaste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False
End With
I then want to copy the SKU code which is the value in "SKURange"to the Dump worksheet column A into the first blank row in column A and autofillto the last row determined by the last row in the adjacent column B.
Thanks for your help