How can I find the last row that contains data in a specific column and on a specific sheet?
The first line moves the cursor to the last non-empty row in the column. The second line prints that columns row.
Selection.End(xlDown).Select MsgBox(ActiveCell.Row)