I have a report that lists the group names, and then the records that belong to that group. Then the next group name, and the records that belong to that group. What is a best way to count the records that belong to a certain group.
ex.
JON
1
2
3
4
Mike
1
2
Paul
1
2
3
4
It needs to read
JON: 4
1
2
3
4
Mike: 2
1
2
Paul: 4
1
2
3
4
ex.
JON
1
2
3
4
Mike
1
2
Paul
1
2
3
4
It needs to read
JON: 4
1
2
3
4
Mike: 2
1
2
Paul: 4
1
2
3
4