Features: |
|
Data set: | ENERGY |
Formats: | REGFMT. |
proc tabulate data=energy format=dollar12.;
class region division type;
var expenditures;
table region='Region: ' all='All Regions',
division all='All Divisions',
type='Customer Base'*expenditures=' '*sum=' '
/ rts=25 box=_page_ condense indent=1;
format region regfmt. division divfmt. type usetype.;
title 'Energy Expenditures for Each Region and All Regions'; title2 '(millions of dollars)'; run;