I have a report that basically prints Project Hours. It's very simple. The records come from a detail file where the Project ID, Date, and Hours Worked are stored. There may be multiple records for the same Project ID, ie;

Project ID Date Hours
XXX123RJ 4/01/2007 5.5
XXX123RJ 4/02/2007 8.0
ZZZ903MM 4/02/2007 3.5
XXX123RJ 4/05/2007 8.0


Report would like this:

Project ID Total Hours
=================================
XXX123RJ 21.5

ZZZ903MM 3.5


I can't seem to get the report to print like this. I know how to insert a Group Section but not sure how to associate a totals/sub-totals field along with the Group.

Thanks,