0 votes
in Software Defined Networking by

How to sort in descending order?

1 Answer

0 votes
by

Use DESCENDING keyword in PROC SORT code. The example below shows the use of the descending keyword.

PROC SORT DATA=auto;

 BY DESCENDING engine ;

RUN ;

...