ods path work.temp(write) sashelp.tmplmst; proc template; edit base.summary; edit NObs; header="Students"; end; edit Mean; header="Average" format=5.2; end; edit Max; header="Tallest" format=4.1; end; end; run; proc means data=sashelp.class mean max; class Sex; var Height; title1 "Formatting applied in PROC MEANS"; run; ods path sashelp.tmplmst;