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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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