Specify the report options and columns, define the group and analysis columns, and specify the titles. DATA= specifies the output data set from the first PROC REPORT step as the input data set for this report. The BOX option draws an outline around the output, separates the column headings 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;