I work in SAS writing both SAS base and SQL statements.
My problem is, that I have two datasets I want to combine horizontally.
The one data set is called Code and have one variable: Code_value It has 55 observations, with no duplicate values.
The other data set is called Persons and have one variable: Person_id It has 167 unique person_id values.
I want to create a dataset where I join these data sets. - There are no matching values in the two datasets. I want to force the data sets together, so I have a data set with for each person_id, there is a row with every code_value.
So i have combinations with these value combinations:
Code1 Pid1
Code1 Pid2
Code1 Pid3
...
Code2 Pid1
Code2 Pid2
Code2 Pid3
... etc. Ending up with a data set with 2 variables and 9185 rows in total.
I have tried data step with merge and also tried to write a sql with a full join, but with no luck.
Can anyone help?
Kind Regards Maria