
| Features: |
PROC TABULATE statement options: FORMAT=
|
| Data set: | ENERGY |
| Formats: | REGFMT. |
proc tabulate data=energy format=comma12.;
class region division type;
var expenditures;
table region*(division all='Subtotal')
all='Total for All Regions'*f=dollar12.,
type='Customer Base'*expenditures=' '*sum=' '
all='All Customers'*expenditures=' '*sum=' '
/ rts=25;
format region regfmt. division divfmt. type usetype.;
title 'Energy Expenditures for Each Region'; title2 '(millions of dollars)'; run;