FionaCondon
IS-IT--Management
I have a report grouped by school (CR 8.5). The group footer which shows:
@OnRollDate1
sum({@CountOnRollFirstDate},{tblSCHOOL.SCH_NAME})
- @CountOnRollFirstDate is 1 or 0 for each pupil depending on whether they were on roll at the time
NetCapacity
a database field
@Surplus
{tblSCHOOL.NetCapacity} - {@OnRollDate1}
@PercentageSurplus
({@Surplus}/{tblSCHOOL.NetCapacity})*100
I need to show the average percentage for all schools in the footer for each school. I have tried using:
average({@PercentageSurplus})
but I get the message 'The summary / running total field could not be created'. Is this because I am putting it in the group footer and the PercentageSurplus fields for all the schools haven't yet been calculated, in which case what should I do? Or is it something else?
Fiona
@OnRollDate1
sum({@CountOnRollFirstDate},{tblSCHOOL.SCH_NAME})
- @CountOnRollFirstDate is 1 or 0 for each pupil depending on whether they were on roll at the time
NetCapacity
a database field
@Surplus
{tblSCHOOL.NetCapacity} - {@OnRollDate1}
@PercentageSurplus
({@Surplus}/{tblSCHOOL.NetCapacity})*100
I need to show the average percentage for all schools in the footer for each school. I have tried using:
average({@PercentageSurplus})
but I get the message 'The summary / running total field could not be created'. Is this because I am putting it in the group footer and the PercentageSurplus fields for all the schools haven't yet been calculated, in which case what should I do? Or is it something else?
Fiona