How to get top scorer student from a class-table having
different sections A,B, C & D? Each section having same
number of students.
Answer Posted / shambhu kumar verma
Proc Sort data = AAA;
by section descending score;
run;
Data BBB;
set AAA;
by section;
if first.section;
run;
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is a pdv and what are its functions?
describe about physical data integration? : Sas-di
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
How we can call macros with in data step? : sas-macro
Mention what is the difference between nodupkey and nodup options?
What function CATX syntax does?
What do you know about sas data set?
how do you debug and test your sas programs? : Sas programming
What is data _null_?
Explain append procedure?
What is the use of %include statement?
What is the differnce between SDTM 3.1.2 to 3.1.1 version
how does sas handle missing values in procs? : Sas programming
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?