BookmarkSubscribeRSS Feed
Almoha
Calcite | Level 5

 

Hi All

I have the following data set and I want to populate ‘x’  for every 3rd  observation  and “Y”  for the 4th observation in Res variable

 

 

              ID

Res

111

x

222

x

333

x

444

y

555

x

666

x

777

x

888

y

 

    …..

 

 

 

Any pointers?

Thanks

Al

 

1 REPLY 1
Reeza
Super User

Look at the MOD function in combination with the _N_ automatic variable. 

 

 

flag='X';
if mod(_n_, 4) =0 then flag='Y';

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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
  • 1 reply
  • 683 views
  • 2 likes
  • 2 in conversation