Hi FriedEgg, sorry if I bother you too much with this but when I did the following: data class; set sashelp.class; 'greatest score'n = weight; 'foo bar'n = height; run; I still got a message that these are not valid names... And when I did this: data _null_; length rename $ 32767; rename='rename'; do until(done); set sashelp.vcolumn end=done; where libname='WORK' and memname='CLASS' and not nvalid(name, 'v7') ; rename = cat(strip(rename), ' ', quote(strip(name)),'n=',translate(strip(name), '_', ' ')); end; call symputx('rename', rename); run; I got a message that I have 0 observations... Thank you
... View more