data SUBSET;
      n = 10;
      do i = n to total by n;
         set POP point=i nobs=total;
         output;
      end;
      stop;
   run;