Nachtschade
New Member
- Joined
- Dec 6, 2013
- Messages
- 30
I have this code:
It copies the entire last row that contains data and pastes it one row below.
I only want it to copy part of the row, columns A to I to be exact. How do I edit this?
Code:
Range("A" & Rows.Count).End(xlUp).EntireRow.Copy
Range("A" & Rows.Count).End(xlUp).Offset(1).EntireRow.PasteSpecial
It copies the entire last row that contains data and pastes it one row below.
I only want it to copy part of the row, columns A to I to be exact. How do I edit this?