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"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Avg!!! 7
Please help me ! 4
dcount return 0 3
Count number of records by date 2
time in 24 HRS problem 4
DCount Syntax 3
Check box to change the format of a text box 5
DCount help 1

Back
Top