Hi everybody,
My code is like this:
and the report looks like this:
and the question is:
How can I get Labels for "*TOTAL BYVAR" ?
Has anybody an idea?
Thanks a lot,
Roland
My code is like this:
Code:
SUM
VAR1 AS 'Label1'
VAR2 AS 'Label2'
COMPUTE VAR3/D9.2= 100*VAR2/VAR1; AS 'Label3'
BY BYVAR1
BY BYVAR2
BY BYVAR3
ON BYVAR2 SUMMARIZE AS 'SumLabel'
ON TABLE COLUMN-TOTAL AS 'TotalLabel'
Code:
BYVAR1 BYVAR2 BYVAR3 Label1 Label2 Label3
------ ------ ------ ------ ------ ------
A K X 2 1 50.00
Y 3 1 33.33
SumLabel1 K 5 2 40.00
A L X 2 1 50.00
Y 3 1 33.33
SumLabel1 L 5 2 40.00
*TOTAL BYVAR1 A 10 4 40.00
B K X 4 2 50.00
Y 6 2 33.33
SumLabel1 K 10 4 40.00
B L X 2 1 50.00
Y 3 1 33.33
SumLabel1 L 5 2 40.00
*TOTAL BYVAR1 B 15 6 40.00
TotalLabel 25 10 40.00
and the question is:
How can I get Labels for "*TOTAL BYVAR" ?
Has anybody an idea?
Thanks a lot,
Roland