Are you sure you are not using the label display?
Try switching to variable name display by doing the following.
Or try using proc contents to display a list of variable names.
I think @japelin has the right answer, and of course a simple fix.
data now;
set sashelp.class;
label name='XXXX';
run;
data updatednow;
set now;
rename name=aaaa age=bbbb weight=cccc height=dddd;
attrib _all_ label='';
run;
Remove all these variable's label .
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.