BookmarkSubscribeRSS Feed
Mike_Davis
Fluorite | Level 6

Hello everyone,

when I use proc import excel file(.xls) into SAS ,some cells with very long character will be trimed after they come to SAS dataset.

how to fix it?

Thanks!

Mike

PROC IMPORT
OUT= one
DATAFILE= "c:\new\process.xls"
DBMS=EXCEL REPLACE;

SHEET="detail$";

GETNAMES=YES;
MIXED=YES;
USEDATE=YES;
SCANTIME=YES;
RUN;

2 REPLIES 2
SASKiwi
PROC Star

Add the TEXTSIZE= option to your IMPORT program as a separate statement (eg textsize = 4096;). By default the maximum text size is 1024 characters.

Useful link here: http://support.sas.com/documentation/cdl/en/acpcref/63184/HTML/default/viewer.htm#a003103761.htm

BTW, you should find it quicker to search for these answers yourself, by looking at the PROC IMPORT SAS Help or online SAS documentation.

I found the above link by searching SAS support with the key words:maximum variable length import procedure 

fd2010
Calcite | Level 5

I have found a post at this link that helped me to solve the problem. It is not elegant, but it works.

https://communities.sas.com/thread/33890?start=0&tstart=0

SAS should provide an option for the user to control how many rows to scan instead of relying on the windows registry.

Good luck.


sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2264 views
  • 3 likes
  • 3 in conversation