

| Features: |
EDIT statement COLUMN statement DEFINE statement : STYLE= attribute NOTES statement DYNAMIC statement |
| Other features: |
|
| Data set: | Exprev |
color=orange attribute.
ods path work.templat (update) sashelp.tmplmst (read);
proc template;
edit Base.Summary;
edit nobs;
style={color=orange background=white};
end;
end;
run;
proc summary data=exprev print;
class Sale_Type;
run;
proc template; delete base.Summary; run;
ods path work.templat (update) sashelp.tmplmst (read);
proc template;
edit Base.Summary;
edit nobs;
style={color=orange background=white};
end;
end;
run;
proc summary data=exprev print;
class Sale_Type;
run;

odstemplates in the
command bar. Then select Work.Templat
ods path work.templat (update) sashelp.tmplmst (read);
proc template;
define table Base.Summary;
notes "Summary table for MEANS and SUMMARY";
dynamic clmpct one_var_name one_var_label one_var;
column class nobs id type ways (varname) (label) (min) (max) (range)
(n ) (nmiss) (sumwgt) (sum) (mean) (uss) (css) (var) (stddev) (cv)
( stderr) (t) (probt) (lclm) (uclm) (skew) (kurt) (median) (mode) (q1)
(q3) (qrange) (p1) (p5) (p10) (p25) (p50) (p75) (p90) (p95) (p99);
define nobs;
style={color=orange backgroundcolor=white};
end;
end;
run;
proc summary data=exprev print;
class Sale_Type;
run;
proc template; delete base.Summary; run;
ods path work.templat (update) sashelp.tmplmst (read);
proc template;
define table Base.Summary;
notes "Summary table for MEANS and SUMMARY";
dynamic clmpct one_var_name one_var_label one_var;
column class nobs id type ways (varname) (label) (min) (max) (range)
(n ) (nmiss) (sumwgt) (sum) (mean) (uss) (css) (var) (stddev) (cv)
( stderr) (t) (probt) (lclm) (uclm) (skew) (kurt) (median) (mode) (q1)
(q3) (qrange) (p1) (p5) (p10) (p25) (p50) (p75) (p90) (p95) (p99);
define nobs;
style={color=orange backgroundcolor=white};
end;
end;
run;
proc summary data=exprev print;
class Sale_Type;
run;

odstemplates in
the command bar. Then select Work.Templat