Hi SAS users, I have a table (table have) with the code. I want to modify it to "table want" (black line under the first line, footnote line change, no vertical line in the middle). How should I modify the code that I have? Thank you. table have table want PROC REPORT DATA=ALL LIST MISSING NOWINDOWS
HEADLINE HEADSKIP SPLIT = '@' ;
WHERE NUM GE 4 ;
COLUMN (NUM SORT1 VARNM COL1 ) ;
DEFINE NUM /ORDER NOPRINT ;
DEFINE SORT1 /ORDER NOPRINT ;
DEFINE VARNM /ORDER WIDTH=20 'Parameter' LEFT
style(column)=[cellwidth=2.00in font_weight=bold ] ;
DEFINE COL1 /WIDTH=12 "Data" CENTER
style(column)=[cellwidth=2.50 in] ;
compute before NUM ;
count+1;
endcomp;
compute NUM;
if NUM ^= '' and count ^=1 then call define(_row_,'style','style=[bordertopcolor=black bordertopwidth=2]');
endcomp;
BREAK AFTER NUM / SKIP ;
compute after _page_/ style={just=left};
line "n, number; SD, standard deviation; Min, minimum; Max, maximum.";
endcomp;
RUN;
... View more