@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;
... View more