Private Sub Worksheet_Activate()
Dim NextRow As Long
NextRow = Range("A65536").End(xlUp).Row + 1
Cells(NextRow, 1).Select
End Sub
or if you want select the last entered row then Try This
Private Sub Worksheet_Activate()
Range("A65536").End(xlUp).Select
End Sub
With ActiveSheet.Cells(Rows.Count, 1)
If .Value = "" Then
.End(xlUp).Select
Else
.Select
End If
End With