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