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

Hi I am trying to keep the first occurence of a variable and set the subsequent values of the variables to missing

My data looks like this

 

Data have;

input  id time AMI;

datalines;

 1 1  0

 1 2  0

 1 3  1

 1 4  0

 2  1  1

 2  2  0

 2  2  1

 2  4  0

run;

 

I would like my data to look like this

ID time AMI

 1 1  0

 1 2  0

 1 3  1

 1 4  .

 2  1  1

 2  2  .

 2  2  .

 2  4  .

 

Basically, I only want to assess the first occurence of AMI

 

Thank you

1 ACCEPTED SOLUTION

Accepted Solutions
Shmuel
Garnet | Level 18

Assuming data is sorted by ID you can do:

 

data want;

 set have;

  by ID;

       retain flag; drop flag;

 

      if first.id then flag=0;

      if flag=1 then ami=.;

      if ami=1 and flag=0 then flag=1;

run;

View solution in original post

4 REPLIES 4
Shmuel
Garnet | Level 18

Assuming data is sorted by ID you can do:

 

data want;

 set have;

  by ID;

       retain flag; drop flag;

 

      if first.id then flag=0;

      if flag=1 then ami=.;

      if ami=1 and flag=0 then flag=1;

run;

SimRock
Obsidian | Level 7

Thank you very Shmuel. It works perfectly

Best

PGStats
Opal | Level 21

I would do:

 

data want;
do until(last.id);
    set have; by id;
    if AMImet 
        then call missing(newAMI);
        else newAMI = AMI;
    output;
    if AMI then AMImet = 1;
    end;
drop AMI AMImet; rename newAMI=AMI;
run;
PG
SimRock
Obsidian | Level 7

Thank you very PGStats. Your codes works awesome too.

Thanks so much

Best

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
  • 4 replies
  • 1582 views
  • 1 like
  • 3 in conversation