Record Count

  • Thread starter Thread starter Marindra
  • Start date Start date
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
 
-----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])
 
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(*)
 
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(*)
 
Back
Top