This tutorial explains how to reverse order of data in SAS.
Create Sample Data
![]() |
Reverse order of data |
Create Sample Data
data temp;
input var1 @@;
cards;
2 9 6 4 3 8
;
run;
Method I : With Sorting
data temp2;
set temp;
i = _N_;
run;
proc sort data = temp2;
by descending i;
run;
Method II : Without Sorting
data temp2;
do i = nobs to 1 by -1;
set temp nobs = nobs point=i;
output;
end;
stop;
run;
- The POINT= option allows us to point to and select a given observation.
- The NOBS= creates and names a temporary variable whose value is usually the total number of observations in the input data set or data sets. If more than one data set is listed in the SET statement, NOBS= the total number of observations in the data sets that are listed.