How do I count selected data in a report footer

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

Guest

Am attempting to count the number of conditions in a data field with a
certain stated value; in a group summary and then a report summary (i.e.
count the Number of records where the sum of hours is between 0 and 24).
 
I "sum of hours" an aggregate total or a field in the report's record source?
If it is a field, you can use an expression like:

=Sum(Abs([sum of hours]<= 24))
 
Back
Top