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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.