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

Hello Gurus,

I am having hard time to flag at least two consecutive visit records per subject as one:  Ex: if ALTX3ULN is 1 for two/more consecutive visits, then first record should be FLAG as 'Y' for that subject.  please see below data have and out needed (also attached as excel files).

DATA HAVE

SUBJNOVISMONSAMPDTTESTCODEALTX3ULN
1130NOV2005:00:00:00SGPT_ALT0
1401MAR2006:00:00:00SGPT_ALT0
1828JUN2006:00:00:00SGPT_ALT0
11225OCT2006:00:00:00SGPT_ALT0
11622FEB2007:00:00:00SGPT_ALT0
12431OCT2007:00:00:00SGPT_ALT0
13629OCT2008:00:00:00SGPT_ALT0
14830SEP2009:00:00:00SGPT_ALT0
16013OCT2010:00:00:00SGPT_ALT0
17212OCT2011:00:00:00SGPT_ALT0
18417OCT2012:00:00:00SGPT_ALT1
19628OCT2013:00:00:00SGPT_ALT0
2121NOV2005:00:00:00SGPT_ALT0
2420FEB2006:00:00:00SGPT_ALT0
2810JUL2006:00:00:00SGPT_ALT0
21223OCT2006:00:00:00SGPT_ALT0
21626FEB2007:00:00:00SGPT_ALT0
22422OCT2007:00:00:00SGPT_ALT0
23621OCT2008:00:00:00SGPT_ALT0
24808OCT2009:00:00:00SGPT_ALT1
26013OCT2010:00:00:00SGPT_ALT0
27213OCT2011:00:00:00SGPT_ALT1
28415OCT2012:00:00:00SGPT_ALT1
29622OCT2013:00:00:00SGPT_ALT1
3004NOV2005:00:00:00SGPT_ALT1
3106DEC2005:00:00:00SGPT_ALT1
4108DEC2005:00:00:00SGPT_ALT0
4407MAR2006:00:00:00SGPT_ALT0
4822JUN2006:00:00:00SGPT_ALT0
41217OCT2006:00:00:00SGPT_ALT0
5107DEC2005:00:00:00SGPT_ALT0
5406MAR2006:00:00:00SGPT_ALT1
5810JUL2006:00:00:00SGPT_ALT1
51210NOV2006:00:00:00SGPT_ALT1
51608MAR2007:00:00:00SGPT_ALT0
52027JUN2007:00:00:00SGPT_ALT0
52426OCT2007:00:00:00SGPT_ALT0
53615OCT2008:00:00:00SGPT_ALT0
54816OCT2009:00:00:00SGPT_ALT0
56002NOV2010:00:00:00SGPT_ALT0
56001NOV2011:00:00:00SGPT_ALT1

OUTPUT NEEDED

SUBJNOVISMONSAMPDTTESTCODEALTX3ULNFLAG
1130NOV2005:00:00:00SGPT_ALT0
1401MAR2006:00:00:00SGPT_ALT0
1828JUN2006:00:00:00SGPT_ALT0
11225OCT2006:00:00:00SGPT_ALT0
11622FEB2007:00:00:00SGPT_ALT0
12431OCT2007:00:00:00SGPT_ALT0
13629OCT2008:00:00:00SGPT_ALT0
14830SEP2009:00:00:00SGPT_ALT0
16013OCT2010:00:00:00SGPT_ALT0
17212OCT2011:00:00:00SGPT_ALT0
18417OCT2012:00:00:00SGPT_ALT1
19628OCT2013:00:00:00SGPT_ALT0
2121NOV2005:00:00:00SGPT_ALT0
2420FEB2006:00:00:00SGPT_ALT0
2810JUL2006:00:00:00SGPT_ALT0
21223OCT2006:00:00:00SGPT_ALT0
21626FEB2007:00:00:00SGPT_ALT0
22422OCT2007:00:00:00SGPT_ALT0
23621OCT2008:00:00:00SGPT_ALT0
24808OCT2009:00:00:00SGPT_ALT1
26013OCT2010:00:00:00SGPT_ALT0
27213OCT2011:00:00:00SGPT_ALT1Y
28415OCT2012:00:00:00SGPT_ALT1
29622OCT2013:00:00:00SGPT_ALT1
3004NOV2005:00:00:00SGPT_ALT1Y
3106DEC2005:00:00:00SGPT_ALT1
4108DEC2005:00:00:00SGPT_ALT0
4407MAR2006:00:00:00SGPT_ALT0
4822JUN2006:00:00:00SGPT_ALT0
41217OCT2006:00:00:00SGPT_ALT0
5107DEC2005:00:00:00SGPT_ALT0
5406MAR2006:00:00:00SGPT_ALT1Y
5810JUL2006:00:00:00SGPT_ALT1
51210NOV2006:00:00:00SGPT_ALT1
51608MAR2007:00:00:00SGPT_ALT0
52027JUN2007:00:00:00SGPT_ALT0
52426OCT2007:00:00:00SGPT_ALT0
53615OCT2008:00:00:00SGPT_ALT0
54816OCT2009:00:00:00SGPT_ALT0
56002NOV2010:00:00:00SGPT_ALT0
56001NOV2011:00:00:00SGPT_ALT1
1 ACCEPTED SOLUTION

Accepted Solutions
Almighty
Fluorite | Level 6

I found the way to do that and below code is working:  Gurus can help us improving the code inorder to increase the efficiency.

Thanks

data want  ;

  set have ;

  by subjno  altx3uln notsorted;

  if altx3uln=1 and (first.altx3uln=0 or last.altx3uln=0) then Consecutive=1;

  else Consecutive=0;

run;

proc sort data=have nodupkey; by subjno  descending ALTx3ULN descending Consecutive; run;

proc sort data=have nodupkey; by subjno; run;

View solution in original post

2 REPLIES 2
Linlin
Lapis Lazuli | Level 10

example:

data have;

input id vismon alt;

cards;

1 1 0

1 4 0

2 60 0

2 72 1

2 84 1

2 96 1

;

data want;

set have;

length new $1;

by id alt;

if alt=1 and first.alt and not last.alt then new='Y';

proc print;run;

Almighty
Fluorite | Level 6

I found the way to do that and below code is working:  Gurus can help us improving the code inorder to increase the efficiency.

Thanks

data want  ;

  set have ;

  by subjno  altx3uln notsorted;

  if altx3uln=1 and (first.altx3uln=0 or last.altx3uln=0) then Consecutive=1;

  else Consecutive=0;

run;

proc sort data=have nodupkey; by subjno  descending ALTx3ULN descending Consecutive; run;

proc sort data=have nodupkey; by subjno; run;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 2232 views
  • 1 like
  • 2 in conversation