Hi,
Too satisfy SAS headers max size i have been forced too shorten down my headers from 50 byte to 32 byte.
Is there a way that i can automatically map my headers from 32 byte to 50 byte with a macro when i export them from sas?
I have a excel document that maps my normal headers too short sas headers.
I essentially want too go back from short headers to normal size headers.
/Br Jacob
How do you export? If you use ods tagsets.excelxp then you can set column headings either in the variables label or in the proc report:
ods tagsets.excelxp file="xyz.xlsx";
proc report data=xyz;
columns a b;
define a / "A long variable label";
...
run;
...
How do you export? If you use ods tagsets.excelxp then you can set column headings either in the variables label or in the proc report:
ods tagsets.excelxp file="xyz.xlsx";
proc report data=xyz;
columns a b;
define a / "A long variable label";
...
run;
...
Use labels.
data mydata ;
x=10;
label x='This is a really long name for the variable X';
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.