I am trying to combine three SAS data files using merge command using the following code.
proc sort data=orion.merger;
by ParcelNumber;
proc sort data=orion.merger1;
by ParcelNumber;
proc sort data=orion.merger2;
by ParcelNumber;
Data orion.mergermain;
merge orion.merger orion.merger1 orion.merger2;
by ParcelNumber;
run;
I have attached a screenshot of the log
You have to do a proc contents on the three files and see how the variables are defined in each file.
Where they conflict, if they are just duplicate values (but stored in a different data type) you can drop them (using the drop option) when using the merge statement (e.g., merge orion.whatever (drop=varxx varyyy) )
Art, CEO, AnalystFinder.com
Are you sure you want a merge? Usually merges don't have the same variables in each dataset, or if they do, you need to rename the variables so they're unique in the final data set. You can't have multiple variables with the same name.
I think you may want to concatenate/append the data instead. You'll have the same issue though, variables with the same name MUST have the same type in a single data set.
I show a method to identify which variables in are in which datasets here, but you can modify it to also show type.
https://gist.github.com/statgeek/3b57ae085d9f7a36a2d95c15f04e72e6
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.