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.

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