How to Retrieve Last Used Cell In Column

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 :)
 
R

Ron de Bruin

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
 
S

steve

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.
 
Top