Sorry - I should have given more background....
I am writing a call center report based on a particular supervisor's team. It is a MTD report than generates all the agents who worked for that supervisor during that month. I have 5 groups - team, last name, first name, thrown out (boolean field) and the date.
The report is to show the minutes each agent worked by day. If the shift (day) was "thrown out" than I don't want to include those minutes in the agent's monthly minute total. So I have my thrown out group order by a specified order with the thrownout = false first, then all the trues. I then suppress any minutes visible under the true.
I can total these fine, but the problem comes when I'm trying to total the overall team minutes for the month. The report is currently set up so that each agent is on their own page (15 agents = 15 pages), but they want the team total listed on each page as well. The problem is I can create a running total and place it in the group footer (which only displays on the last page - by itself) with the correct amount, but can I place it in the group header?
The report looks like this:
Mins
Team 100
Agent1
ThrownOut (F)
3/1 10
3/3 15
ThrownOut (T)
3/5
--Next Page--
Mins
Team 100
Agent2
ThrownOut (F)
3/2 20
3/4 45
ThrownOut (T)
In this example, the team total should be 90 not 100. The 100 is coming from the ThrownOut(T) record on 3/5 which would be 10 minutes.
Hope this makes sense!