Hi, I am trying to identify the specific variables that are found in dataset1 but not in dataset2. Proc compare can find the common ones but does not list the ones that are distinct: proc compare data=data1 (obs=0) compare=data2(obs=0);
run; How can I find the unique variables? Thanks.
... View more