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';

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 851 views
  • 2 likes
  • 2 in conversation