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

Hello,

 

This is a Have data and I want to generate Flag variable as seen in Wanted?

 

Have:

Date Account ID Flag
4/30/2022 1 0
5/31/2022 1 0
6/30/2022 1 0
7/31/2022 1 1
8/31/2022 1 0
9/30/2022 1 0

 

Want:

Date Account ID Flag
4/30/2022 1 0
5/31/2022 1 0
6/30/2022 1 0
7/31/2022 1 1
8/31/2022 1 2
9/30/2022 1 3
1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Just use a SUM statement and the fact that SAS evaluates Boolean expressions to 1 for TRUE and 0 for FALSE.

 

data want;
  set have;
  by account date ;
  if first.account then new_flag=0;
  new_flag + (flag or new_flag);
run;

Result:

OBS    account          Date    Flag    new_flag

 1        1       2022-04-30      0         0
 2        1       2022-05-31      0         0
 3        1       2022-06-30      0         0
 4        1       2022-07-31      1         1
 5        1       2022-08-31      0         2
 6        1       2022-09-30      0         3

Note: You need to create a NEW variable for the RETAIN to work. If you try use a variable that is already on the input dataset then the retained value is lost when the next observation is read in.

View solution in original post

1 REPLY 1
Tom
Super User Tom
Super User

Just use a SUM statement and the fact that SAS evaluates Boolean expressions to 1 for TRUE and 0 for FALSE.

 

data want;
  set have;
  by account date ;
  if first.account then new_flag=0;
  new_flag + (flag or new_flag);
run;

Result:

OBS    account          Date    Flag    new_flag

 1        1       2022-04-30      0         0
 2        1       2022-05-31      0         0
 3        1       2022-06-30      0         0
 4        1       2022-07-31      1         1
 5        1       2022-08-31      0         2
 6        1       2022-09-30      0         3

Note: You need to create a NEW variable for the RETAIN to work. If you try use a variable that is already on the input dataset then the retained value is lost when the next observation is read in.

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