Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Sub FindLastRow()
Dim iRow As Long
iRow = 1 'row that data starts
Do While Len(Range("A" & iRow).Text) > 0
iRow = iRow + 1
Loop
iRow = iRow - 1
MsgBox iRow & " Rows of Data"
End Sub