t****x 发帖数: 1650 | 1 excel data import到sas后,有的字符串太长被截断,有啥方法可以解决? |
l*****8 发帖数: 483 | 2 add memosize=1024 and see if it works.
Proc Import datafile="&flname" out=treat4 DBMS=Excel replace; Memosize=1024;
run; |
t****x 发帖数: 1650 | 3 似乎不识别这个命令。。
1024;
【在 l*****8 的大作中提到】 : add memosize=1024 and see if it works. : Proc Import datafile="&flname" out=treat4 DBMS=Excel replace; Memosize=1024; : run;
|
d**********r 发帖数: 24123 | 4 excel 文件插入第一行暴长字符串。读入SAS后删除第一行。
【在 t****x 的大作中提到】 : excel data import到sas后,有的字符串太长被截断,有啥方法可以解决?
|
d******9 发帖数: 404 | 5 You can try these 2 methods:
1.Specify the Excel engine. Say, Excel2002.
2. Save the Excel as CSV, then import into SAS.
Do they work for you? |