Hello!
I have a proc report with group, across and an analysis variable. Furthermore there is a break and an rbreak. All this works well. Now I'd like to add an additional row after each break. Yet I don't want to do this with the line statement but in a way so that there are all individual cells for each column like in a break statement. You can think of this wished-for line like a break statment which however contains any computation that I want and not only a summary.
Here is the code for the part that works:
proc report data=work.mydata;
column mygroupfield1 mygroupfield2 myacrossfield myvalues;
define mygroupfield1 / group;
define mygroupfield2 / group;
define myacrossfield / across;
define myvalues / analysis sum;
break after mygroupfield2 / summarize;
rbreak after / summarize;
run;
The new row which I want to insert should come after the break of mygroupfield2.
Can anybody help?
Best regards,
Eva