Rog,
You could use that formula, or you could just loop through looking for an
empty cell
For i =1 to Cells(Rows.Count,"A").End(xlUp).Row
if IsEmpty(Cells(i,"A").Value) Then
'i is the row
Exit For
End If
Next
This will pass over a formula that returns an empty cell, so if you want to
find that one, use
For i = 1 To Cells(Rows.Count, "A").End(xlUp).Row
If Cells(i, "A").Value = "" Then
'i is the row
Exit For
End If
Next