Hi, everyone. Could help me with my output? i should insert blank lines to separate horizontal borders. this is my code: ods pdf style=sasdocprinter file="/home/u35846133/outputs/test1.pdf";
proc report data=sashelp.cars nowd spanrows;
column make model type MSRP invoice;
define make /group;
define model /display;
define type /display;
define MSRP /display;
define invoice /display;
compute before make;
line " ";
endcomp;
run;
ods pdf close;
... View more