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

Hello,

 

If I have two variables called xvar and yvar, how can I generate the yvar by adding 1 if xvar is even and staying the same if xvar is odd? The yvar is initialized to be 1.

 

xvar    yvar

2           1

3

5

6

7

8

 

Output wanted:

xvar    yvar

2           1

3           1

5           1

6           2

7           2

8           3

 

I tried the retain statement for yvar but can't get the expected result. Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
data have;
input xvar; 
retain yvar 0;
if mod(xvar,2)=0 then yvar+1;   
cards;
2           
3
5
6
7
8
;
run;

View solution in original post

2 REPLIES 2
Ksharp
Super User
data have;
input xvar; 
retain yvar 0;
if mod(xvar,2)=0 then yvar+1;   
cards;
2           
3
5
6
7
8
;
run;
liyongkai800
Obsidian | Level 7
Thank you, that's exactly what I expect.
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
  • 2 replies
  • 1041 views
  • 1 like
  • 2 in conversation