data male female;
set sashelp.class ;
if sex='M' then output male;
else if sex='F' output female ;
run;
proc datasets lib=work memtype=data;
change female=male ;
run;
I have rename the dataset names like already we have two datasets male and female.
now i have to rename male dataset as female and female dataset as male
how to do in proc datasets procedure ?
data male female;
set sashelp.class;
if sex='M' then output male;
else if sex='F' then output female;
run;
proc datasets lib=work memtype=data nolist nowarn;
delete _male _female;
run;
change female=_male male=_female;
run;
change _male=male _female=female;
run;
quit;
This is the classic "exchange two objects" problem in computing. You always need a third temporary object to hold one of the values, you can't move the data (or names, in your case) concurrently.
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 lock in 2025 pricing—just $495!
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.