If I have the range A1:A65536, how do I search that range and activate the next empty cell below within the range ?
If I have the range A1:A65536, how do I search that range and activate the next empty cell below within the range ?
Nothing is beyond our reach
Hello Fraggs,
You are looking for the End property of a Range.
Finding the Last Non Blank Row in a Range:
LastRow = Range("A" & Rows.Count).End(xlUp).Row
Activate the Next Cell:
Cells(LastRow + 1, "A").Activate
Sincerely,
Leith Ross
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks