hnunez4399
Programmer
How can I add a counter on a form so as a new record is added, the display counter continues to updated?
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.
Private Sub Form_Current()
If Not Me.NewRecord Then
Label.Caption = "Record " & CurrentRecord & " Of " & RecordsetClone.RecordCount & " Records"
Else
Label.Caption = "Record " & CurrentRecord & " Of " & (RecordsetClone.RecordCount + 1) & " Records"
End If
End Sub