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

Hi,

I am trying to create a study day variable for patients that have multiple encounters per day.

For example:

ID    Date        Study Day (want to create this)

12   6/20/14      1

12   6/20/14      1

12   6/20/14      1

12   6/20/14      1

12   6/22/14      2

12   6/26/14      3

13   6/20/14      1

Any thoughts?

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Miracle
Barite | Level 11

Hi, perhaps you could try this?

data have;

input ID DATE MMDDYY10.;

datalines;

12   6/20/14

12   6/20/14

12   6/20/14

12   6/20/14

12   6/22/14

12   6/26/14

13   6/20/14

;

run;

proc sort data=have; by ID Date; run;

data want;

  set have;

  by ID Date;

  if first.id then studyday=.;

  if not missing(date) then do;

  if date ne lag(date) then studyday+1;

  end;

run;

proc print noobs; format date ddmmyy10.; run;

View solution in original post

3 REPLIES 3
Miracle
Barite | Level 11

Hi, perhaps you could try this?

data have;

input ID DATE MMDDYY10.;

datalines;

12   6/20/14

12   6/20/14

12   6/20/14

12   6/20/14

12   6/22/14

12   6/26/14

13   6/20/14

;

run;

proc sort data=have; by ID Date; run;

data want;

  set have;

  by ID Date;

  if first.id then studyday=.;

  if not missing(date) then do;

  if date ne lag(date) then studyday+1;

  end;

run;

proc print noobs; format date ddmmyy10.; run;

Reeza
Super User

Data want;

set have;

by id date;

retain studyday;

if first.id the studyday=0;

if first.date then studyday+1;

run;

he2182
Calcite | Level 5

Thank you both so much! The solutions worked perfectly!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1354 views
  • 6 likes
  • 3 in conversation