Record Count

M

Marindra

I create a report that show list of applicant that we are
going to interview. Could anybody tell me how to write a
code to count how many applicant I have on the list

Thank in advance,
Malindra
 
G

Guest

-----Original Message-----
I create a report that show list of applicant that we are
going to interview. Could anybody tell me how to write a
code to count how many applicant I have on the list

Thank in advance,
Malindra
.
In the Report footer place a text box and set its control
source =count([NameOfFieldInReport])
 
M

Marshall Barton

Marindra said:
I create a report that show list of applicant that we are
going to interview. Could anybody tell me how to write a
code to count how many applicant I have on the list


Use a text box in the Report Header or Footer section and
set its ControlSource expression to:

=Count(*)
 
M

Marindra

I got it

Thank you so much,
Marindra
-----Original Message-----



Use a text box in the Report Header or Footer section and
set its ControlSource expression to:

=Count(*)
 
Top