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
how will you locate the sas platform applications? : Sas-bi
What is the maximum length of the macro variable? : sas-macro
What is the difference between the proc sql and data step?
Have you ever used the SAS Debugger?
Name validation tools used in SAS
what is sas metadata repository? : Sas-bi
how can you import .csv file in to sas? : Sas programming
How long can a macro variable be? A token? : sas-macro
Explain translate function?
why is a stop statement needed for the point=option on a set statement? : Sas programming
What is the order of application for output data set options, input data set options and SAS statements?
How do you add a number to a macro variable? : sas-macro
How to create an external dataset with sas code?
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
how to generate the test data in sas without input data? : Sas-administrator