Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / vishnu

create data set as given above.Next follow the below step.

data abc;
format a $2.;
format g $2.;
format k $2.;
format m $2.;
format o $2.;
format s $2.;
format t $2.;
format w $2.;
set abc;
run;

Run the above program u will get variables in sorted order.

Note:-In the place of format statement u can use length
statement.

Is This Answer Correct ?    2 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how can you put a "trace" in your program? : Sas programming

1116


what is null hypothesis? why do you consider that?

2964


What is the use of %include statement?

1106


What is the difference between order and group variable in proc report?

1486


Mention what are the data types does SAS contain?

1194


What are the implications?

1788


What is run-group processing?

1244


What are the data types that sas contain?

1251


why is sas data integration studio important? : Sas-di

1089


what are the types of interactive display types? : Sas-bi

1151


Name and describe few sas character functions that are used for data cleaning in brief.

1184


Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?

2453


explain the concepts and capabilities of business object? : Sas-bi

1013


What are the applications primarily used by business analyst? : Sas-bi

1052


In proc transpose and data step with arrays which one you pick?

3178