BookmarkSubscribeRSS Feed
radhikaa4
Calcite | Level 5

Hello, I need help merging the dates that do not match for 2 different datasets

 

Dataset #1: Screening

 

Group

Screen_date

Total_screen

A

1/1/2018

1

A

2/1/2018

2

A

3/1/2018

2

A

5/1/2018

3

 

Dataset #2: Randomizaiton

Group

rand_date

Total_rand

A

1/1/2018

1

A

2/1/2018

2

A

4/1/2018

2

A

5/1/20181

 

Want: 

Group

New_date

Total_screen

Total_random

A

1/1/2018

1

1

A

2/1/2018

2

1

A

3/1/2018

2

 

A

4/1/2018

 

2

A

5/1/2018

3

1

 

I tried the following:

PRoc sql;

SELECT a.*

FROM dataset_1 a LEFT JOIN dataset_2 b ON a.group = b.group

where a.screen_date = b.rand_date

quit;

 

this gives me matched data: so 3 records match but not 2. 

 

Thankss!!

2 REPLIES 2
novinosrin
Tourmaline | Level 20

HI @radhikaa4  I think you need a full join from What I could deduce on seeing your WANT dataset

 


data one;
input Group	$ Screen_date :mmddyy10.	Total_screen;
format Screen_date mmddyy10.;
cards;
A	1/1/2018	1
A	2/1/2018	2
A	3/1/2018	2
A	5/1/2018	3
;

data two;
input Group $	rand_date :mmddyy10.	Total_rand;
format rand_date mmddyy10.;
cards;
A	1/1/2018	1
A	2/1/2018	2
A	4/1/2018	2
A	5/1/2018	1
;

proc sql;
create table want as
SELECT coalesce(a.group,b.group) as group,coalesce(a.Screen_date,b.rand_date) as Screen_date format=mmddyy10.,Total_screen
FROM one a full JOIN two b 
ON a.group = b.group and a.Screen_date=b.rand_date;
quit;

 

LinusH
Tourmaline | Level 20

Try a FULL JOIN, together with coalesce() functino for GROUP and NEW_DATE.

Data never sleeps

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 711 views
  • 0 likes
  • 3 in conversation