BookmarkSubscribeRSS Feed
Defense
Obsidian | Level 7

 

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

4 REPLIES 4
Defense
Obsidian | Level 7

Thanks

ballardw
Super User

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.

LinusH
Tourmaline | Level 20
By default, SAS will use column headers as SAS labels. But the maximum length is 64 chars due to a limitation in the Jet engine. Of course you could expand the label in a later step, but that would be considered a work around.
http://support.sas.com/documentation/cdl/en/acpcref/67382/HTML/default/viewer.htm#n0msy4hy1so0ren1ac...
Data never sleeps

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 3783 views
  • 1 like
  • 4 in conversation