John, Your solution as I said in my previous reply was superb... I have
another question. I also have fields in my table which are text fields/combo
boxes. my goal is to create a summary report which will provide totals for
many of the fields, some of which are checkboxes which are now fine. Can I
use a similar expression to also count these text fields in the same query as
I'm counting my check boxes in? Currently, In a separate query, I have to use
"grouping" before i can do counts and I really don't need to have the data
"grouped"... i just want to see the total number of fields matching specified
criteria whether or not the fields are text, check boxes, numerics... Can you
help?
John Spencer (MVP) said:
Field and table names are a big help. Are you using the query grid? Do you
know how to build a totals query?
You will need to use calculated fields in your query.
First, Select View:Totals from the menu
Then select your table
Then build calculated fields similar to the following.
Field: CountField1: Abs(Sum(MyCheckField1))
Total: Expression
Field: CountField2: Abs(Sum(MyCheckField2))
Total: Expression