For what purposes have you used sas macros? : sas-macro
No Answer is Posted For this Question
Be the First to Post Answer
What do the mod and int function do? : Sas programming
how can u join the two tables without using proc sql Joins and nested queries ?
In sas admin differentiate between roles and capabilities? : sas-grid-administration
If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?
explain about data integrator metadata reports? : Sas-di
What is the role of administrative users? : sas-grid-administration
What are the analysis datasets created, and what are the new variables created in CLINICAL SAS
1 Answers Accenture, Sciformix,
What do the SAS log messages "numeric values have been converted to character" mean?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
what are different type of sas servers ? On which server does the sas code execute ?
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..
how to shift the rows to cols? eg: i have like field1 field2 field3 10 20 20 this should be displayed as field1 10 field2 20 field3 30 (without the obs col) how do this?can i use transpose or tell me suitable way to do this?