TWO SUMMARY LINES
TWO SUMMARY LINES
(OP)
hello, I need urgent help. The issue is I try to create two summary lines for the columns:
one for totals (ON TABLE COLUMN-TOTAL)
second one for average calculation of the columns (I am trying ON TABLE SUMMARIZE AVE. columnname).
the report only shows 1 summary line always - the last one. Any suugestions?
one for totals (ON TABLE COLUMN-TOTAL)
second one for average calculation of the columns (I am trying ON TABLE SUMMARIZE AVE. columnname).
the report only shows 1 summary line always - the last one. Any suugestions?
RE: TWO SUMMARY LINES
Date
Score
StudentName 1/1/05 2/1/05 etc.
Alex 10 9
Brian 9 10
David 5 5
Mike 8 10
______________________________
Team Total: 32 34
Team Average: 8 8.5
StudentName is a sort field. Date is across field.
RE: TWO SUMMARY LINES
CODE
A/A1=' ';
END
TABLE FILE CAR
SUM SEATS
BY A NOPRINT
BY COUNTRY
ACROSS BODYTYPE
ON A SUMMARIZE AVE. AS 'AVERAGE'
ON TABLE COLUMN-TOTAL AS 'TOTAL'
END
Since the constant 'A' only changes at the beginning and end of the report, we get both operations on the entire report.
RE: TWO SUMMARY LINES