Display Tables record number on the main form

mansied

Member
Local time
Today, 03:19
Joined
Oct 15, 2020
Messages
100
Hello
I have a Database with 4 tables . How can I show the number of the records on the Main form?
When I create put "=Count([table1]! [primayKey1]) " for one table works .but when I add other tables it shows #Error for all even the first one ?
How can I show all tables total records on the main page?
Thank you
 
Put 4 list boxes on the form.
Under each list put a textbox,w the source:
=listbox.listcount-1
 
Put 4 list boxes on the form.
Under each list put a textbox,w the source:
=listbox.listcount-1
How do I assign the textbox to each table?I am not sure I got your idea .could you show me with a sample ?
 
1606958427023.png
 
How about the control source equal
=Dcount("*","TableName")
 

Users who are viewing this thread

Back
Top Bottom