counting -.number of records.

M

Mickey

I'm trying to show the number of records in a query in a
report -Can anyone help me?
 
D

Duane Hookom

Add a text box to the report header or footer with a control source of
=Count(*)
 
M

Mickey

Thank you! now, can I show that (the total # of records)
from several different queries in one report?
Thanks in advance
Mickey
 
D

Duane Hookom

A report can have only one recordsource/query. You can use subreport that
are bound to their own query. Another method is to use a text box bound to
the control source of:
=DCount("*","tblYourTable")
 
Top