Login
Remember
Register
Ask a Question
How to do Matched Merge and output consisting of observations in file1 but not in file2, or in file2 but not in file1?
0
votes
asked
Aug 22, 2024
in
Software Defined Networking
by
rajeshsharma
How to do Matched Merge and output consisting of observations in file1 but not in file2, or in file2 but not in file1?
matched
merge
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 22, 2024
by
rajeshsharma
data readin;
merge file1(in=infile1)file2(in=infile2);
by id;
if infile1 ne infile2;
run;
SAS Merge
...