How can I find the last row that contains data in a specific column and on a specific sheet?
Last_Row = Range("A1").End(xlDown).Row
Just to verify, let's say you want to print the row number of the last row with the data in cell C1.
Range("C1").Select Last_Row = Range("A1").End(xlDown).Row ActiveCell.FormulaR1C1 = Last_Row