Hi Bill, This is what I use to format my emails: ods html3 body=OUTPUT style=htmlblue; ods escapechar='^'; ODS TEXT="^S={font_face='Calibri' font_size=3 fontweight=Medium foreground=black} "; To create table Title/Footnotes: proc print data=Table_Name noobs; VAR Loan_Purpose Pricing Loan_Amount n; format loan_amount comma20.; TITLE "TABLE TITLE"; Footnote1 "Lotter is based on Male population"; Footnote2 "Average shoe price just over R1k"; run; Mar1ene
... View more