Count only "X" on a Report Header

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

Guest

I have a Text box named ACTIVITY. I the activity could be one of four codes.
B,C,I,X. I would like to count only the "X" and put it on the report header.
How can i do this?

Thanks for your help.
 
try adding an unbound text box with the control source being
=Abs(Sum([activity]="X"))

Jim
 
Thanks

Jim/Chris said:
try adding an unbound text box with the control source being
=Abs(Sum([activity]="X"))

Jim
-----Original Message-----
I have a Text box named ACTIVITY. I the activity could be one of four codes.
B,C,I,X. I would like to count only the "X" and put it on the report header.
How can i do this?

Thanks for your help.
.
 

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

Back
Top