here is the sample code and data which is kind of similar to my data. proc sql noprint; select key into:abc separated by ", " from sashelp.aacomp; quit; data _All_report; title="This is a test"; count="&abc."; run; ods listing close; ods escapechar ="~" ; ods pdf file="H:\Summary.pdf" bookmarkgen=no; proc report data=_all_report headline headskip nowd ; title1 "Summary"; column title count ; define title / " " display style(column)={width=3.5in}; define count / " " display style(column)={width=6.5in}; run; ods pdf close;
... View more