*Program 14-5 Controlling which observations appear in the listing (WHERE statement); title "Listing of SALES with Quantities greater than 400"; proc print data=learn.sales; where Quantity gt 400; id EmpID; var Customer Quantity TotalSales; format TotalSales dollar10.2 Quantity comma7.; run; *Program 14-6 Using the IN operator in a WHERE statement; title "Listing of SALES with Quantities greater than 400"; proc print data=learn.sales; where EmpID in ('1843' '0177'); id EmpID; var Customer Quantity TotalSales; format TotalSales dollar10.2 Quantity comma7.; run;