jamesmills
Technical User
Hey people i need to find out what the sql code is for counting how many rows there are in a table.
Thanks
Thanks
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.
Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("tblCustomers")
cmdUpdate.Caption = rs.RecordCount
rs.Close
db.Close