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
|
|