Since you can use SAS/Studio to run SAS code then the answer is yes.
For help with what code you want to run you will need to provide more details.
Thanks Rzzea. I uploaded data to SAS studio, and wanted to change variables names like we can do in SAS Enterprise Guide.
Hello!
I do not know about manipulating metadata to rename variables, but what about simply copying the vars and dropping the old? Would that be a fix for you?
See the sketch below.
Cheers
data work.NewTestData;
set work.TESTDATA;
LovelyName = BadName;
drop BadName;
run;
@fja wrote:
Hello!
I do not know about manipulating metadata to rename variables, but what about simply copying the vars and dropping the old? Would that be a fix for you?
See the sketch below.
Cheers
data work.NewTestData; set work.TESTDATA; LovelyName = BadName; drop BadName; run;
Note it is simpler to rename the variable.
data work.NewTestData;
set work.TESTDATA;
rename BadName = LovelyName ;
run;
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!
Ready to level-up your skills? Choose your own adventure.