PROC SORT sorts the observations by Region and Decade.
proc sort data=metropop;
   by region decade;
run;