Sort data set in DIVISION order. Sort USCB by the DIVISION variable to create the DIVSTATE data set.


proc sort data=uscb out=divstate;
   by division;
run;