BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SAS_inquisitive
Lapis Lazuli | Level 10

I have a exposure date and start of adverse events date.  I want  to find the last exposure or same day exposure for each adverse event date.

 

Exposure date data

 

Subj     exposure_date

A         2015-09-10

A        2015-10-01

A        2015-11-12

A       2015-11-25

 

Adverse event date data

 

Subj     adverse_event_date

A          2015-09-23

A          2015-09-23

A          2015-10-16

A          2015-10-16

A         2015-11-05

A         2015-11-05

 

Desired data set

 

Subj      Last_exposure_date

A         2015-09-10

A         2015-09-10

A        2015-10-01

A        2015-10-01

A       2015-10-01

A       2015-10-01

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

 

Well, not typing test data in so this is an untested shell:

proc sql;
  select  AE.*,
          (select max(EXPOSURE_DATE) from EX where SUBJ=AE.SUBJ and EXPOSURE_DATE <= AE.ADVERSE EVENT_DATE) as EXPOSURE_DATE
  from    AE AE;
quit;

View solution in original post

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

 

Well, not typing test data in so this is an untested shell:

proc sql;
  select  AE.*,
          (select max(EXPOSURE_DATE) from EX where SUBJ=AE.SUBJ and EXPOSURE_DATE <= AE.ADVERSE EVENT_DATE) as EXPOSURE_DATE
  from    AE AE;
quit;
SAS_inquisitive
Lapis Lazuli | Level 10

@RW9 I have one more question. If EX data set has one more variable, how can I add it to resulting data set? I tried to put it as the separate subquery as you did, it is not working.

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
  • 2 replies
  • 1152 views
  • 0 likes
  • 2 in conversation