SOLVED: Open Form Move to last record
I am trying to open a form and move to the last record. I am using this code:
Private Sub Form_Load()
If Me.RecordsetClone.RecordCount > 0 Then
Me.RecordsetClone.MoveLast
End If
End Sub
It does not move me to last record, how might it be modified?
I am trying to open a form and move to the last record. I am using this code:
Private Sub Form_Load()
If Me.RecordsetClone.RecordCount > 0 Then
Me.RecordsetClone.MoveLast
End If
End Sub
It does not move me to last record, how might it be modified?
Last edited: