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