B Bill Mar 11, 2004 #1 When I open up a continous form is there any way of counting how many records are in the form. cheers!
When I open up a continous form is there any way of counting how many records are in the form. cheers!
A Allen Browne Mar 11, 2004 #2 In code: With Me.RecordsetClone If .RecordCount <> 0 Then .MoveLast Msgbox .RecordCount & " records." End If End With
In code: With Me.RecordsetClone If .RecordCount <> 0 Then .MoveLast Msgbox .RecordCount & " records." End If End With