Hi,
I currently have the code
And this selects the last row with data. However, I want to use a code similar to offset, I want to select the next row after the last row with data. Similar to what i have for last used column
Thanks,
N.
I currently have the code
Code:
Cells(Rows.Count, 2).End(xlUp).EntireRow
Code:
Dim LC As LongLC = Cells(7, Columns.Count).End(xlToLeft).Column
Columns(LC).Copy
Cells(1, LC + 1).PasteSpecial
Thanks,
N.