the following is adding 70 to the total no matter how many records are in the table!
Private Sub Command0_Click()
Dim MyDB As Database
Dim MyRS As Recordset
Set MyDB = CurrentDb
Set MyRS = MyDB.OpenRecordset("Indies")
MsgBox (MyRS.RecordCount)
MyRS.Close
MyDB.Close
End Sub
Private Sub Command0_Click()
Dim MyDB As Database
Dim MyRS As Recordset
Set MyDB = CurrentDb
Set MyRS = MyDB.OpenRecordset("Indies")
MsgBox (MyRS.RecordCount)
MyRS.Close
MyDB.Close
End Sub