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
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.