I am trying to create a summary row above each group in my data. I have 2 questions:
- How do I merge the first 2 cells horizontally (the ones in red below) in the summary rows.
- How do I remove the duplicated F and M in the Sex column (at the moment I can work around this by changing only those cell's text colours to white, but hopefully there's a better way)
The output is an RTF file, and I'm using SAS 9.4 - the desktop version.
Is this possible using proc report?
Code:
options missing=' ';
proc report data=sashelp.class nowd;
columns sex name age weight;
define sex / order;
break before sex / summarize;
run;
I don't think you can merge cells in the summarize line.
Some trickery with
compute
blocks andcall define
can alter the cell values and appearances.For example (Just J names for smaller image):