Features: |
This example BY statement option: : DESCENDING |
Other features: |
PROC PRINT |
Data set: | Account |
proc sort data=account out=sorted;
by town descending debt accountnumber; run;
proc print data=sorted;
var company town debt accountnumber;
title 'Customers with Past-Due Accounts'; title2 'Listed by Town, Amount, Account Number'; run;