How to import a .xlsx file over 256 columns?

  • Follow


Use the regular import, only import 255 columns.

proc import datafile="C:\temp\aaa.xlsx"
out=test
replace;
sheet='Final Data';
getnames=yes;
run;

thanks
0
Reply demin 6/23/2010 2:35:42 PM

Try converting the xlsx file to a csv or txt file using the SW that
originally created the file. May have to change the GUESSROWS to bring
in the data in the correct format.

demin wrote:
> 
> Use the regular import, only import 255 columns.
> 
> proc import datafile="C:\temp\aaa.xlsx"
> out=test
> replace;
> sheet='Final Data';
> getnames=yes;
> run;
> 
> thanks
0
Reply Ed 7/26/2010 6:16:03 PM


1 Replies
3004 Views

(page loaded in 0.046 seconds)

Similiar Articles:













7/22/2012 3:41:59 AM


Reply: