-----Original Message-----
Sirocco,
I was not clear and only gave one result unstead of the 4
results I need. I tried your solution and it workd for
what I asked for but does not work for what I need. I have
values in the Table [Grade1] that value 1, 2, 3, 4, and 5.
I need to count all of the 1 and 2 together and count 3,
4, and 5 seperately looking like this:
-----------------------
1 & 2 3 4 5
-----------------------
32 25 10 15
When I try to expand your idea to include all of these
results I end up with the same totals in each field
result. The expression I am using is:
Grade4: Count([Employees]![Grade1]=4)
Thanks Dennis
-----Original Message-----
Here's an alternative: try calculating the count in a separate query, then
joining this query object with the other data in the report source.
I am trying to calculate how many values that equal 5 in
in a field named [Grade1]. This calculated field is in a
report. The following calculation is what I am working on
but it is not working.
=DCount([Grade1],(5))
Thanks Dennis
.
.