Display the Total

A

Anthony

How do I display the total number of records listed on a report, inside a
textbox (control source) at the report footer level?
 
J

John Spencer

add a control
set its souce to
= Count(*)

Or
= Count(*) & " Records in Report"
 
M

Mahesh Yawantikar

Simple. In the textbox type this expression : =1 ; And in the properties
column, in the running total option, click the over the group option. Try
this and let me know
 
Top