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

I have a dataset where it is having multiple timepoints and multiple form sequence for the same subject id and i need to output those records where the form sequence is same for the subject but the timepoint is different, here as per the requirement if the form sequence is same for a subject the timepoint as as well must be same, if it is different it must be in the output. I have been trying with lag function and also using first. but i found that jot useful and not able to achieve the result. any help please.

example datasets as below

data ndsn;
infile datalines;
input timepoint formseq  usubjid $15.;
datalines;
1 1 111A116
1 1 111A116
1 1 111A116
5 5 111A116
4 5 111A116
5 5 111A116
8 8 111A116
8 8 111A116
6 6 111A116
6 6 111A116
3 6 111A116
;
run;

expected output

data ndsn;
infile datalines;
input timepoint formseq  usubjid $15.;
datalines;
4 5 111A116
3 6 111A116
;
run;

I had tried lag function and also using first. but they didn't  provide expected result, i thought of using if then but that is taking long time, can i know a solution for this

 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

LAG and FIRST. are OK as an idea, it's how you implement them:

data want;
set ndsn;
by usubjid formseq notsorted;
retain flag;
if first.formseq then flag = 1;
if not first.formseq and timepoint ne lag(timepoint)
then do;
  if flag then output;
  flag = 0;
end;
drop flag;
run;

View solution in original post

4 REPLIES 4
Kurt_Bremser
Super User

LAG and FIRST. are OK as an idea, it's how you implement them:

data want;
set ndsn;
by usubjid formseq notsorted;
retain flag;
if first.formseq then flag = 1;
if not first.formseq and timepoint ne lag(timepoint)
then do;
  if flag then output;
  flag = 0;
end;
drop flag;
run;
Ravindra_
Quartz | Level 8
Thanks a lot Kurt for a quick reply, it worked for me, i have got expected output now. Just for the purpose of knowledge, can i know the purpose of using notsorted
Ksharp
Super User
data ndsn;
infile datalines;
input timepoint formseq  usubjid $15.;
datalines;
1 1 111A116
1 1 111A116
1 1 111A116
5 5 111A116
4 5 111A116
5 5 111A116
8 8 111A116
8 8 111A116
6 6 111A116
6 6 111A116
3 6 111A116
;
run;
data want;
 do until(last.formseq);
  set ndsn;
  by  formseq notsorted;
  if first.formseq then _timepoint=timepoint;
  if _timepoint ne timepoint  then output;
 end;
 drop _timepoint;
run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 4 replies
  • 515 views
  • 2 likes
  • 3 in conversation