Hi
I collect three column of data in a table as below
ID NAME JOB
1 DAVE 1
2 DAVE 2
3 JIM 3
4 JIM 4
5 SIMON 5
6 DAVE 6
I am trying to construct a query which will include a column showing a running total against each name. So that in the example above the result would look like this:
ID NAME JOB COUNT
1 DAVE 1 1
2 DAVE 2 2
3 JIM 3 1
4 JIM 4 2
5 SIMON 5 1
6 DAVE 6 3
the nearest I can get is either a summary showing a total count against each user. Can somebody advise me further
thanks
I collect three column of data in a table as below
ID NAME JOB
1 DAVE 1
2 DAVE 2
3 JIM 3
4 JIM 4
5 SIMON 5
6 DAVE 6
I am trying to construct a query which will include a column showing a running total against each name. So that in the example above the result would look like this:
ID NAME JOB COUNT
1 DAVE 1 1
2 DAVE 2 2
3 JIM 3 1
4 JIM 4 2
5 SIMON 5 1
6 DAVE 6 3
the nearest I can get is either a summary showing a total count against each user. Can somebody advise me further
thanks