1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
55
56 libname project "/folders/myfolders" ;
NOTE: Libref PROJECT was successfully assigned as follows: Engine: V9 Physical Name: /folders/myfolders
57
58
59
60 proc import datafile= "/folders/myfolders/b.txt”
61 OUT=WORK.MYEXCEL;
62 DBMS=TEXT
63 REPLACE;
64 RUN;
65
66
67
68
69
70
71
72
73
74 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
75 ODS HTML CLOSE;
76 &GRAPHTERM; ;*';*";
ERROR: Output SAS data set must be provided.
NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE IMPORT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 76 ! */;RUN;QUIT;
77 QUIT;RUN;
78 ODS HTML5 (ID=WEB) CLOSE;
79
80 ODS RTF (ID=WEB) CLOSE;
81 ODS PDF (ID=WEB) CLOSE;
NOTE: ODS PDF(WEB) printed no output. (This sometimes results from failing to place a RUN statement before the ODS PDF(WEB) CLOSE statement.)
82 FILENAME _GSFNAME;
NOTE: Fileref _GSFNAME has been deassigned. 83 DATA _NULL_;
84 RUN;
NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds
85 OPTIONS NOTES STIMER SOURCE SYNTAXCHECK;
86
... View more