I have this data
DateRecived JObNumber REcCnt
20130626 1234 1
20130627 1238 11
20130628 1240 2
20130629 1242 23
I applied the group by on dateRecieved in ssrs and get the output as
DateRecived JObNumber REcCnt
20130626 1234 1
20130627 1238 11
20130628 1240 2
20130629 1242 23
Total 37
But i want the output as
DateRecived JObNumber REcCnt
20130626 1234 1
Total 1
DateRecived JObNumber REcCnt
20130627 1238 11
Total 11
DateRecived JObNumber REcCnt
20130627 1240 2
Total 2
DateRecived JObNumber REcCnt
20130628 1242 23
Total 23
I don't know how to repeat the group header and calculate the sum for each group in SSRS any help would be great .