I currently cheat and just copy an entire row.
I'm not sure how to select the exact range I need
item is a cell starting at A and I want it extend only to F
I tried
But that didn't work.
Any ideas?
I'm not sure how to select the exact range I need
Code:
item.EntireRow.Copy Destination:=OS.Range("A65000").End(xlUp).Offset(1)
item is a cell starting at A and I want it extend only to F
I tried
Code:
OS.Range(item.cell, item.cell.Offset(, 5)).Copy Destination:=OS.Range("A65000").End(xlUp).Offset(1)
Any ideas?