how can I rename a datavalue down the column?ie to change the value of locale variable from en to English for all the observations?
data want;
length locale $ 8;
set have;
locale='English';
run;
data want;
length locale $ 8;
set have;
locale='English';
run;
thank you
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.