BookmarkSubscribeRSS Feed
JLang055
Fluorite | Level 6

Hello. I have a patient dataset with observations by participant. I want to flag participants with multiple observations in the dataset. See below for an example.

FIDFlag (want)
11
10
20
30
41
40
40
50
3 REPLIES 3
JLang055
Fluorite | Level 6

Thanks @Kurt_Bremser. It seems that your code flagged the first observation for every participant. Is there a way to change the code so that it only flags those with multiple observations. If a participant has only one observation I dont want them flagged. 

Kurt_Bremser
Super User

Simply cannot be with the data you posted and my code:

data have;
input fid;
datalines;
1
1
2
3
4
4
4
5
;

data want;
set have;
by fid;
flag = (first.fid and not last.fid);
run;

proc print data=want noobs;
run;

Result:

id	flag
1	1
1	0
2	0
3	0
4	1
4	0
4	0
5	0

Matches exactly with your expected result from your initial post:

FID Flag (want)
1 1
1 0
2 0
3 0
4 1
4 0
4 0
5 0

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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