hi guys ...i have one query...
data abc;
input s w k g o t a m;
cards;
1 2 3 4 5 6 7 8
2 3 4 5 6 7 8 9
;
run;
i want the output to be the sorted order(only
variables).observations should not be changed..
Answer Posted / amar
Proc sort data=dataset;
by idnumber ;
run;
| Is This Answer Correct ? | 2 Yes | 25 No |
Post New Answer View All Answers
What are the statements in proc sql?
describe about metadata object? : Sas-di
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
What do the SAS log messages "numeric values have been converted to character" mean?
How to sort in descending order?
What are the new features included in the new version of SAS Programming Language?
Describe the ways in which you can create macro variables?
what is information maps?
What is data _null_?
describe how to adjust the performance of data integrator? : Sas-di
for report generation which one you used proc report or data_null_?
how can you create zero observation dataset? : Sas programming
Describe a time when you were really stuck on a problem and how you solved it?
Do you need to know if there are any missing values?
how to do user inputs and command line arguments in sas?