Counting records from multiple queries or tables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a method to get a total record count from multiple tables or
queries? with VBS or SQL ?
 
Not sure which way you want the "total record count from multiples tables or
queries": adding record count from each table???

However, check Access Help on the DCount() function.
 
You can write a short function using DCount() to count the number of
returned rows from each Query and then sum them up.

Alternatively, you can create a UNION (All) Query and use DCount() function
on this Union Query.

Check Access Help on DCount() function and Union Query.
 
Back
Top