PROC SORT sorts the observations by Region and State.
proc sort data=exprev;
   by region state;
run;