Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

proc report caption for summarizing row

Status
Not open for further replies.

kaeserea

Programmer
Feb 26, 2003
164
0
0
DE
Hello!

I have a proc report like this:
[tt]
PROC REPORT DATA=work.mydata;
COLUMN
my_numeric_field
my_charcter_field, (field1 field2);

define my_numeric_field / group ' ';
define my_charcter_field / across ' ';
define field1 / 'Caption1';
define field2 / 'Caption2';

rbreak after / summarize;

compute after;
my_numeric_field= 'I wish this would be displayed';
endcomp;

RUN;
[/tt]

We would like to habe a cation for the summarizing last row. The manual says to do this with compute after. But it doesn't work the way we did it. See above.

I wonder whether the problem is that we use a numeric field as group.

Can anybody help?

Thanx a lot
Eva
 
Have you tried the LINE statement?

ex
Code:
compute after;
   line 'I wish this would be displayed';  
endcomp;

Klaz
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top