title '1.3a Data Listing - Africa and Asia regions and Boot, Sandal and Slippers'; proc report data=sashelp.shoes nowindows nocenter missing headline headskip nofs list split='*'; * Where condition excludes missing region and prodv values; where region in ('Africa' 'Asia') and product in ('Boot' 'Sandal' 'Slipper'); column region product subsidiary stores sales inventory returns; define region /display; define product /display; define subsidiary/display; define stores /display; define sales/display; define inventory /display; define returns/display; run;