*Program 14-1 PROC PRINT using all the defaults; title "Listing of SALES"; proc print data=learn.sales; run; *Program 14-2 Controlling which variables appear in the listing; title "Listing of SALES"; proc print data=learn.sales; var EmpID Customer TotalSales; run; *Program 14-3 Using an ID statement to omit the Obs column; title "Listing of SALES"; proc print data=learn.sales; id EmpID; var Customer TotalSales; run; *Program 14-4 Adding a FORMAT statement to PROC PRINT; proc print data=learn.sales; title "Listing of SALES"; id EmpID; var Customer Quantity TotalSales; format TotalSales dollar10.2 Quantity comma7.; run;