Not really an EG issue, but you could put this into a Code node:
PROC SORT DATA = inputdsn OUT = temp;
BY var1 var2 var3;
RUN;
DATA unique duplicates;
SET temp;
BY var1 var2 var3;
IF NOT LAST.var3 THEN OUTPUT duplicates;
ELSE OUTPUT unique;
RUN;
"var1 var2 var3" are the variables used to identify the duplicated records. Your duplicate values will be in the "duplicates" data set. The individual unique records will be in the "unique" data set.
Is this what you were looking for?
.............Phil
Message was edited by: prholland
Message was edited by: prholland