Reaching out to this group for suggestions again.
Sample of data
Date Target_Calls Total_Calls
3/1/09 100 110
3/2/09 200 230
3/3/09 225 250
...
3/21/09 115 125
Here's what I'm trying to accompish.
MTD score which is defined as sum(Target_Calls) / sum(Total_Calls) (over appropriate time frame of @StartDate to @EndDate)
Previous Day Score = Target_Calls / Total Calls where date = datediff("d",-1,{@EndDate})
I have a whole series of reports I'm trying to maintain and expand that solved the problem by building a whole big ugly mess of arrays from {@StartDate} to {@EndDate}
Target_Calls[Counter] := etc.
Is this the best way of solving the problem? Is there a better way of calculating the previous day's score without all these arrays?
One example of my report builds these arrays, one for each location in their own subreport, and then passes the values to the main report. The main report shows the combined score of all 15 locations as well as the combined score of the previous day.
Don't you love inheriting old reports?
Sample of data
Date Target_Calls Total_Calls
3/1/09 100 110
3/2/09 200 230
3/3/09 225 250
...
3/21/09 115 125
Here's what I'm trying to accompish.
MTD score which is defined as sum(Target_Calls) / sum(Total_Calls) (over appropriate time frame of @StartDate to @EndDate)
Previous Day Score = Target_Calls / Total Calls where date = datediff("d",-1,{@EndDate})
I have a whole series of reports I'm trying to maintain and expand that solved the problem by building a whole big ugly mess of arrays from {@StartDate} to {@EndDate}
Target_Calls[Counter] := etc.
Is this the best way of solving the problem? Is there a better way of calculating the previous day's score without all these arrays?
One example of my report builds these arrays, one for each location in their own subreport, and then passes the values to the main report. The main report shows the combined score of all 15 locations as well as the combined score of the previous day.
Don't you love inheriting old reports?