DATA= specifies the output data set from the previous PROC REPORT step
as the input data set for this report. The BOX option draws an outline around
the output, separates the column headers from the body of the report, and
separates rows and columns of data. The TITLE statements specify a title for
the report.
proc report data=temp box nowd;
column manager sales;
define manager / group format=$mgrfmt.;
define sales / analysis sum format=dollar11.2;
title 'Managers with Daily Sales';
title2 'of over';
title3 'One Thousand Dollars';
run;