BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ksharp
Super User
NOTICE: code changed for fixing a problem. Sorry !

OK. I misunderstood.

data want;

array col(5) (1 4 5 5 4);
temp1=largest(1,of col(*));

do i=1 to dim(col);
  if col{i}=temp1 then do;
    col{i}=.;index_of_1nd=i;
    value_1=vname(col(index_of_1nd));
	leave;
  end;
end;

temp2=largest(1,of col(*));
do i=1 to dim(col);
  if col{i}=temp2 then do;
   index_of_2nd=i;
   value_2=vname(col(index_of_2nd));
   leave;   /*<--------*/
  end;
end;
drop i temp1 temp2;
run;




raafat
Calcite | Level 5

KSsharp: it works ! thank you very much. Can you please briefly explain you code, of course if you have time 🙂

Ksharp
Super User

Actually , It could be rewrited by WHICHN().

I think it is more readable for you .

 


data want;

array col(5) (1 4 5 5 4);

temp=max(of col(*));
idx=whichn(temp,of col(*));
col{idx}=.;
index_of_1nd=idx;
value_1=vname(col(index_of_1nd));

temp=max(of col(*));
idx=whichn(temp,of col(*));
col{idx}=.;
index_of_2nd=idx;
value_2=vname(col(index_of_2nd));


drop temp idx;
run;

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 17 replies
  • 7058 views
  • 2 likes
  • 5 in conversation