Anyone know how to retain the number of records in a table. Its the easiest question you'll have to answer.
My data control is just data1
Printable View
Anyone know how to retain the number of records in a table. Its the easiest question you'll have to answer.
My data control is just data1
Are you asking how to find out the number of records in a table?
data1.recordset.recordcount
Or in SQL,
SELECT COUNT(*) FROM <table name> AS record_count