BookmarkSubscribeRSS Feed
kwokramer
Calcite | Level 5

I have data for one year that includes one date variable. There are many rows per individual. I need to be able to select individuals who satisfy three criteria within any 90 day period in the year. The dates are not equally spaced or the same for every individual. Any help would be greatly appreciated. This needs to be able to done in proc sql.

4 REPLIES 4
DBailey
Lapis Lazuli | Level 10

off the cuff...

proc sql;

select

t1.individual,

t1.datevar,

count(*) as Occurrences

from

     have t1

     inner join have t2

          on t1.individual = t2.individual

               and intck('day',t1.datevar, t2.datevar) <=90

group by t1.individual, t1.datevar

having count(*)>=3;

quit;

Astounding
PROC Star

One pitfall to code around ...

INTCK will return a negative number when the first date is later than the second date.  You probably don't want all of those included in your count.

kwokramer
Calcite | Level 5

Would sorting after the initial data pull fix that?

DBailey
Lapis Lazuli | Level 10

sorting wouldn't help.

proc sql;

select

t1.individual,

t1.datevar,

count(*) as Occurrences

from

     have t1

     inner join have t2

          on t1.individual = t2.individual

               and intck('day',t1.datevar, t2.datevar) <=90

               and t2.datevar >= t1.datevar

group by t1.individual, t1.datevar

having count(*)>=3;

quit;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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