i have datasets that have 30 columns. I would like clean up datasets by removing dulplicates using _all_ and redirect the duplicate records to another dataset.
proc sort data=have nodupkey out=_duprecs;
by _all_;
run;
this code doesnt seem to do what I want.
any help on this ?
Is the below what you are trying to do?:
data class (drop=i);
set sashelp.class;
do i=1 to 5;
output;
end;
run;
proc sort data=class nodupkey out=dups_removed dupout=_duprecs;
by _all_;
run;
Art, CEO, AnalystFinder.com
Is the below what you are trying to do?:
data class (drop=i);
set sashelp.class;
do i=1 to 5;
output;
end;
run;
proc sort data=class nodupkey out=dups_removed dupout=_duprecs;
by _all_;
run;
Art, CEO, AnalystFinder.com
Exactly!
Please mark the question answered.
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.