options linesize=96 pagesize=54 nocenter nodate nonumber; title 'World Wide Product Sales Report'; proc tabulate data=sashelp.prdsal2 ; table state, (actual predict ) * (sum*f=dollar14.2 mean*f=dollar14.2); var actual predict; class state; keylabel sum="Total"; keylabel mean="Average"; run;