I am struggling with this oft-asked question about importing a .csv into SAS University.
This works...
data _null_;
infile "/folders/myfolders/book.csv";
input;
put _infile_;
run;
BUT, this fails miserably!
proc import
DATAFILE="/folders/myfolders/book.csv"
OUT = book
DBMS = CSV
GETNAMES = yes;
run;
With this error...
NOTE: The SAS System stopped processing this step because of errors.
44 DATAFILE="/folders/myfolders/book.csv"
45 OUT = book
46 DBMS = CSV
47 GETNAMES = yes;
________
22
76
ERROR 22-322: Syntax error, expecting one of the following: ;, DATAFILE, DATATABLE, DBMS, DEBUG, FILE, OUT, REPLACE, TABLE,
_DEBUG_.
ERROR 76-322: Syntax error, statement will be ignored.
Any help will be appreciated.
Let's Go Sioux!