BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
elmariah
Calcite | Level 5

Hi, I am relatively new to SAS University. I am trying to import an Excel spreadsheet that has >1000 columns. I imported the data successfully, but only the first 256 columns. My code is below:

 

libname in '/folders/myfolders/sas';
proc import datafile='/folders/myfolders/sas/Fibrosis.xls'
out=in.LVFibrosis
DBMS=xls
REPLACE;
run;

 

Am I limited by the software to 256 columns? And if so, does anyone have suggestions for working with a larger amount of data?

 

Thanks,

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

I believe your issue lies with using XLS not XLSX. The older versions of Excel with extenstion XLS could not have more than 255 columns. So adjust your file name and and the engine.

 

 

View solution in original post

3 REPLIES 3
ballardw
Super User

I believe your issue lies with using XLS not XLSX. The older versions of Excel with extenstion XLS could not have more than 255 columns. So adjust your file name and and the engine.

 

 

elmariah
Calcite | Level 5
Thanks a lot! That did the trick.

##- Please type your reply above this line. Simple formatting, no
attachments. -##
Reeza
Super User

Please mark the question as answered, if you have a solution.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 3341 views
  • 0 likes
  • 3 in conversation