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 / sravan
data xyz;
set abc;
retain a g k m o s t;
run;
| Is This Answer Correct ? | 3 Yes | 9 No |
Post New Answer View All Answers
Describe the ways in which you can create a macro variable?
Explain append procedure?
How can I remove header from output data set?
What are pdv and it functions?
I have a dataset concat having variable a b & c. How to rename a b to e & f?
What is substr function?
How do you debug and test your SAS programs?
What do the mod and int function do? : Sas programming
how does sas handle missing values in a merge? : Sas programming
which features do you use to check the data validations and errors? : Sas-administrator
Mention few capabilities of sas framework.
Can you execute a macro within a macro? Describe. : sas-macro
How would you identify a macro variable? : sas-macro
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
is data integration and etl programming is same? : Sas-di