You are on page 1of 1

data one; set dup; by name; if first.

name<0 then output; run; proc print ; run;

proc sql; select Name, count(*) from INdata group by Name having count(*)>1; quit;

You might also like