Make variable names be the first obs value. data class; if _n_ eq 1 then do; name='name ';sex='sex ';output;end; set sashelp.class sashelp.class; output; keep name sex; run; ods listing close; ods rtf file='x.rtf'; proc report data=class noheader nowd; run; ods rtf close; ods listing; Xia Keshan
... View more