BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Alopex
Fluorite | Level 6

I have a dataset where I would like to add a new column assigned 'bruks' where if 'champ1', 'champ2', 'champ3' 'champ4' 'champ5' or 'champ6' have any of the following observations;

50 161 183 196 264 331 633 746 798 103 163 524 525 526, it should be assigned as 1 in 'bruks', if neither, it should be assigned 0 in 'bruks'. I really have trouble finding the right type of statement for this, I understand that if, then is not proper with this amount of variables and columns, but cannot seem to make the select -when statement to work properly wither (I amcoding it wrong, obviously ;))

 

Can anyone help, please?

 

One of my attempts here ( I tried both with end; in all lines, and without, and this only shows the first two *champ*categories):

 

data rrmh.bruks;

set rrmh.etresultat;

select (champ1);

when (50) do; bruks=1;

when (161) do; bruks=1;

when (183) do; bruks=1;

when (196) do; bruks=1;

when (264) do; bruks=1;

when (331) do; bruks=1;

when (633) do; bruks=1;

when (746) do; bruks=1;

when (798) do; bruks=1;

when (103) do; bruks=1;

when (163) do; bruks=1;

when (524) do; bruks=1;

when (525) do; bruks=1;

when (526) do; bruks=1;

select (champ2);

when (50) do; bruks=1;end;

when (161) do; bruks=1;end;

when (183) do; bruks=1;end;

when (196) do; bruks=1;end;

when (264) do; bruks=1;end;

when (331) do; bruks=1;end;

when (633) do; bruks=1;end;

when (746) do; bruks=1;end;

when (798) do; bruks=1;end;

when (103) do; bruks=1;end;

when (163) do; bruks=1;end;

when (524) do; bruks=1;end;

when (525) do; bruks=1;end;

when (526) do; bruks=1;end;

otherwise; bruks=0;

end;

run;

 

 

Thanks in advance!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Also the IN operator

bruks=0;

if champs1 in (50 161 183 196 264 331 633 746 798 103 163 524 525 526) then bruks=1;

Be careful with the otherwise. If you find a value in champ1 for example and then run the second set of Select statements it would reset it 0.

View solution in original post

9 REPLIES 9
ndp
Quartz | Level 8 ndp
Quartz | Level 8

Using an array would be much better. let us know if you need help with coding.

Alopex
Fluorite | Level 6

Yes, I absolutely need help with the coding 😄

 

I am a beginner to SAS, and mostly change programs others have already coded, so this is new to me!

Reeza
Super User

Also the IN operator

bruks=0;

if champs1 in (50 161 183 196 264 331 633 746 798 103 163 524 525 526) then bruks=1;

Be careful with the otherwise. If you find a value in champ1 for example and then run the second set of Select statements it would reset it 0.

Alopex
Fluorite | Level 6

So I can write:

 

bruks=0;

if champ1 in (50 161 183 196 264 331 633 746 798 103 163 524 525 526) then bruks=1;

if champ2 in (50 161 183 196 264 331 633 746 798 103 163 524 525 526) then bruks=1;

if champ3 in (50 161 183 196 264 331 633 746 798 103 163 524 525 526) then bruks=1;

and so on?

Reeza
Super User
You could, but should use an array. Since you have only 5 variables you don't save much in code, but if you had 20 it saves a lot. It also makes it easier to update if you need to change that IN list and prevents errors.

array chmp(5) champ1-champ5;
bruks=0;
do i=1 to dim(chmp);
if chmp(i) in (50 161 183 196 264 331 633 746 798 103 163 524 525 526) then bruks=1;
end;
Alopex
Fluorite | Level 6

It was the "in" that I wasn't aware of, that ruined my IF-THEN attempt.

 

But I see that your last answer is better for more variables, yes. What does the "dim" stand for?

Reeza
Super User
DIM() is a function that calculates how many variables in the array. In this case it would return 5.
Alopex
Fluorite | Level 6

If the columns had different names (champ, many, few, lot, none), how would the code in the first line look? And I might reveal myself as a total ignorant now, but when one has stated that bruks=1 for all the mentioned numbers, what does the do i=1 to dim(chmp); do?

 

array chmp(5) champ1-champ5;
bruks=0;
do i=1 to dim(chmp);
if chmp(i) in (50 161 183 196 264 331 633 746 798 103 163 524 525 526) then bruks=1;
end;

Reeza
Super User
An array sets up the list of variables that will be looped through. So you would list all your variables after the array name.

Array <arrayname>(<num elemements>) list_of_variables;


The Do/End is a loop to loop through all variables set up in the array.

You may want to review some papers on Lexjansen.com on array processing.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 9 replies
  • 1313 views
  • 3 likes
  • 3 in conversation