BookmarkSubscribeRSS Feed
SrikanthY
Calcite | Level 5

how to set when not missing values into new variable and varible name into new variable by using array

 

ex: below table

 

IDsubjectpropcordkacrOldvarFiledVal
102aaaasw  propasw
102aaa wewe cordwewe
102aaa  eerkacreer
105bbb ddd cordddd
105bbb  sskacrss
105bbb     
108cccqee  propqee
108cccss  propss
108ccc  asdsakacrasdsa
3 REPLIES 3
andreas_lds
Jade | Level 19

Define an array with the variables prop, cord and kacr. Use a loop to check the array, use vname (or vnamex) to set oldvar, assuming that setting FieldVar is not a problem.

 

Untested code:

data want;
  set have;

  length OldVar $ 32 FiledVal $ 100;
  array values[1:3] prop cord kacr;

  do i = 1 to dim(values);
    if not missing(values[i]) then do;
      OldVar = vnamex(values[i]);
      FiledVal = values[i];
      /* maybe leave loop here */
    end;
  end;
run;
Reeza
Super User

1. Define an array

2. Use COALESCEC to find the value, since you only have one per row this is fine. 

3. Use WHICHC to find the index of the variable.

4. Use VNAME to get the name of the variable.

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 3 replies
  • 1267 views
  • 0 likes
  • 3 in conversation