Hi,
As I import an excel table with very long column head into SAS via SAS import wizard, the variable names (column heads) are truncated in sas dataset. How can I avoid the truncating?
thanks
Defense
SAS variable names are limited to 32 characters. You need to adapt your Excel headers to this limit.
Thanks
Note that SAS has something called LABELS to provide nicer text for many uses that can be associated with a variable.
Very brief example:
data have;
x=4;
label x ="The number of candy bars";
run;
proc print data=have label;
run;
Will the text of the label instead of the variable as a column heading.
By default most procedures will use the label (or at least part of it) in output. And Labels can be much longer than a variable name, 256 and can include characters like # ! @$%^&*() and so on.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.