I have a query that lists each person then each persons department. Some can be in two or three departments. I need it to do a running count in the query. So for example,
Name Date Deparment Department Cnt
John Smith 01/01/03 #65 1
Susan Howl 01/15/99 #36 1
Susan Howl 12/15/00 #25 2
Susan Howl 04/18/02 #15 3
As it is now it counts every row as one because I have the group by on all fields. If I don't have the group by my department number doesn't show up and I need the number to show.
Any help would be so appreciated!!!!
Name Date Deparment Department Cnt
John Smith 01/01/03 #65 1
Susan Howl 01/15/99 #36 1
Susan Howl 12/15/00 #25 2
Susan Howl 04/18/02 #15 3
As it is now it counts every row as one because I have the group by on all fields. If I don't have the group by my department number doesn't show up and I need the number to show.
Any help would be so appreciated!!!!