mirror of
https://github.com/sasjs/core.git
synced 2026-01-14 12:00:05 +00:00
fix: sorting output in create sas package
This commit is contained in:
@@ -131,14 +131,14 @@ data members(compress=char);
|
|||||||
run;
|
run;
|
||||||
|
|
||||||
proc sort data=members;
|
proc sort data=members;
|
||||||
by name;
|
by name name2;
|
||||||
run;
|
run;
|
||||||
|
|
||||||
%let temp_options = %sysfunc(getoption(source)) %sysfunc(getoption(notes));
|
%let temp_options = %sysfunc(getoption(source)) %sysfunc(getoption(notes));
|
||||||
options nosource nonotes;
|
options nosource nonotes;
|
||||||
data _null_;
|
data _null_;
|
||||||
set members;
|
set members;
|
||||||
by name notsorted;
|
by name;
|
||||||
|
|
||||||
ord + first.name;
|
ord + first.name;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user