I have 3 ways of finding last row in col A. What is the diffrence? And which one is the best to use.
Nr 1
Range("A" & Rows.Count).End(xlUp).Row
Nr 2
Cells.Find(What:="*", After:=Range("A1"), SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
Nr 3
Dim Col, row, lastRow As Integer
Col = 1
row = 1
lastRow = 1
lastRow = Cells(Rows.Count, Col).End(xlUp).row
Cells(lastRow, Col).Select