thunderkid
Military
- Jun 12, 2008
- 2
I am using VBA codes to sort hundred of rows on a sheet. However, after the sort I have to scroll down to the last row to add a new row. How do I activate (if that is the correct term) on the cell after the last row. I have tried the following:
Range(Selection, Selection.End(xlDown)).Offset(1,0).Activate
This code highlights the column of the active cell, but the active cell is at the uppermost cell in the selected column.
Any hints would be appreciated.
Range(Selection, Selection.End(xlDown)).Offset(1,0).Activate
This code highlights the column of the active cell, but the active cell is at the uppermost cell in the selected column.
Any hints would be appreciated.