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

So I need to see how many days have passed between observations.

So :

Person Date

A 1/1/12

A  1/5/12

A  1/7/12

B 4/5/12

B 4/9/12

B and so on

B

B

C

C

Basically, I want a column to the right that says X days have passed since last instance. I am thinking an array, but I am horrible at arrays.

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

DIF function sounds about right.

data dif;
   input id:$1. date :mmddyy.;
  
format date date.;
  
cards;
A 1/1/12
A  1/5/12
A  1/7/12
B 4/5/12
B 4/9/12
;;;;
   run;
data dif2;
   set dif;
   by id;
   dif = dif(date);
  
if first.id then dif=.F;
  
run;

View solution in original post

1 REPLY 1
data_null__
Jade | Level 19

DIF function sounds about right.

data dif;
   input id:$1. date :mmddyy.;
  
format date date.;
  
cards;
A 1/1/12
A  1/5/12
A  1/7/12
B 4/5/12
B 4/9/12
;;;;
   run;
data dif2;
   set dif;
   by id;
   dif = dif(date);
  
if first.id then dif=.F;
  
run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1 reply
  • 400 views
  • 0 likes
  • 2 in conversation