How do I retrieve the last value in a column, when the column has a variable number of rows?
I figured how to get the row number, e.g.:
lastRow = Cells(Rows.Count, "K").End(xlUp).Row
How do I use that to get the value in the cell?
e.g. if lastRow = 8794, I want to get the value in cell K8794.
Cells(Rows.Count, "K").End(xlUp).Value