@Reeza Thank you for your help as always! @SuzanneDorinski Thank you very much The decimal and centered the table works now. Below is what I want for the subtitle, since each proc function ended on each page, I want the title for the page (or for the specific table generated by the proc function, as illustrated in italic below) options center nodate; options orientation=landscape nonumber topmargin=".2in" bottommargin=".2in" leftmargin=".2in" rightmargin=".2in"; ods pdf file="C:\Documents\Statistical.pdf" style=Styles.Minimal; title1 bold h=12pt f='Calibri' color=black justify=c " - Statistical Review -"; proc means data = dm1 n median min max q1 q3 Range maxdec=2; var age; * I want a subtitle for the table generated by this proc means function, like "- Age -"; * I also want to add a footnote to " *Note: patient's age was calculated using the mid of the month as their birthday"; run; proc freq data = dm1; tables sex race Stroke_on_awakening/nocum; * I want a subtitle for report generated by this proc freq, like "- Subject Baseline Characteristics -"; run; proc means data = ec1 n mean std min max q1 q3 Range maxdec=2; var Administered_Drug_Volume; * I want a subtitle for report generated by this proc freq, like "- Drug Administered -"; run; proc freq data = evt1; tables Type_of_anesthesia/nocum; * I want a subtitle for report generated by this proc freq; run; footnote1 j=l "XXX Inc."; footnote2 j=l "Data cutoff date: 15-Nov-2018"; footnote3 c=l "--- Confidential ---"; run; ods _all_ close; quit;
... View more