BookmarkSubscribeRSS Feed
hovliza
Obsidian | Level 7

When I want to merge 6 datasets to one dataset like this:

*Merge datasets*;
DATA m.combined;
MERGE 	m.dataset1
	m.dataset2
	m.dataset3
	m.dataset4 
	m.dataset5
	m.dataset6; 
BY personnumber;
RUN;

Why do I get in my output table 3 times the same measurements for my personnumber like this:

 Personnumber

 Gender

Heigth

Weight

 1

 167

 56

 1

 167

 56

 1

 167

 56

 1

 188

 78

 1

 188

 78

 1

 188

 78

 2

 190

 102

 2

 190

 102

 2

 190

 102

 

I want to merge it like this:

 Personnumber

 Gender

 Heigth

Weight

 167

 56

 188

 78

 190

 102

 

There are no errors, so can someone please help? Thanks!

4 REPLIES 4
hovliza
Obsidian | Level 7

What do you mean? I can't post my whole dataset here..

Astounding
PROC Star

One of your incoming data sets (OK, possibly more than one) already contains multiple observations for each PERSONNUMBER.  You have to fix that data set first (again, possibly more than one data set to fix) if you want to end up with one observation apiece.

 

If you think it's legitimate that one of your incoming data sets contains multiple observations per personnumber, then you need to decide what should happen with those ... how can your input contain many, but your output only one?  What is the process to go through to narrow down the observations?

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
  • 1233 views
  • 2 likes
  • 3 in conversation