I have a table e.g like this
Fiscal Period Name Total
------------- ------ -------
01 xx 5
01 xx 5
02 xx 4
02 xx 3
03 xx 2
How do I create a running total for each one of the periods at the end of each group? So it would appear something like this
Fiscal Period Name Total
------------- ------ -------
01 xx 5
01 xx 5
---
10
---
02 xx 4
02 xx 3
---
7
---
03 xx 2
---
2
---
Fiscal Period Name Total
------------- ------ -------
01 xx 5
01 xx 5
02 xx 4
02 xx 3
03 xx 2
How do I create a running total for each one of the periods at the end of each group? So it would appear something like this
Fiscal Period Name Total
------------- ------ -------
01 xx 5
01 xx 5
---
10
---
02 xx 4
02 xx 3
---
7
---
03 xx 2
---
2
---