Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display total number of records in report

Status
Not open for further replies.

0243906

Technical User
Jul 29, 2005
18
0
0
IE
I currently have a number have query which results in a number of records. I am then using this query to make a report. In the report is a list of all the records and small bit of information from the records. What i need is a small summary at the bottom saying something like: Number of Records returned = 'XX' number.
Currently i need to check how many records matched the query and then type this in manually into the record.
Any help would be greatly appreciated.
 
Place a textbox on the reportfooter and set it's control source to
Code:
=Count([AnyFiledName])
It's label can be captioned like you said "Number of Records returned"

________________________________________________________
Zameer Abdulla
Help to find Missing people
There’s a world of difference between editorials and advertorials
 
Sorry, im very stupid.
What do i replace 'anyfiledname' with. The query name, report name?
 
how about "any field name" in the query you are bounding to this report?

although personally I would use "non duplicated data within field's, name"...

--------------------
Procrastinate Now!
 
Or
Code:
=Count(*)
will work also....

Si hoc legere scis, nimis eruditionis habes
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top