DCount .......

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear all,

I have a form that's used to disply the search citeria,the form looks like
this :
Name Job description phone Mobile
John employee 00 00
Tony Account manager 00 00
Peter Supervisor 00 00

I'd like to creat an unbound text box to count the how many "account manger"
will appear as a result of this searcjing,and another unbound text box to
count how many supervisores.....

Note that i want to count according to the searching results that are
present on the current form.

Regards

Note
 
Another way to solve your need would be to base your form on a totals
query that does your counting etc.
 
Note,

Yes. In the Control Source of the unbound textbox in your form's
footer, put like this...
=Abs(Sum([Job description]="Account manager"))
 
Back
Top