How to Retrieve Last Used Cell In Column

  • Thread starter Thread starter Marshall
  • Start date Start date
M

Marshall

I'm having trouble figuring out how to do this. Could someone help me
out.


All of the cells before the last used cell may or may not be filled
with something. In the end I'm going to need the row number of this
cell as well.


Any help is greatly appreciated!

Thanks :)
 
Hi Marshall

Sub LastCellInColumnA()
Range("A" & Rows.Count).End(xlUp).Select
End Sub

this will give you the row
Range("A" & Rows.Count).End(xlUp).row
 
Marshall,

Dim lrow as Long
lrow = Cells(Rows.COUNT, "A").End(xlUp).Row

This finds the last used cell in column A, regardless of any blank cells.
Change "A" to any column you want.
 
Back
Top