I'm tyring to run a running sum, on Access QUERY.
Here's how the table looks like
Employee ID | Check Date | Amount | DESIRED OUTCOME
1 | 7/1/03 | 500 | 500
1 | 7/5/03 | 800 | 1300
1 | 7/8/03 | 750 | 2050
2 | 7/1/03 | 400 | 400
2 | 7/5/03 | 350 | 750
2 | 7/9/03 | 400 | 1150
I'd like to run a "running sum" on the Amount; grouped by ID, by check date. As shown above, the outcome desired will recognaze the new ID and sort the data by check date.
Anybody can help, please? Thank you...
Here's how the table looks like
Employee ID | Check Date | Amount | DESIRED OUTCOME
1 | 7/1/03 | 500 | 500
1 | 7/5/03 | 800 | 1300
1 | 7/8/03 | 750 | 2050
2 | 7/1/03 | 400 | 400
2 | 7/5/03 | 350 | 750
2 | 7/9/03 | 400 | 1150
I'd like to run a "running sum" on the Amount; grouped by ID, by check date. As shown above, the outcome desired will recognaze the new ID and sort the data by check date.
Anybody can help, please? Thank you...