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 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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