I am trying to import an CSV into SAS university edition. I am using code as mentioned below.
/** FOR CSV Files uploaded from Windows **/
FILENAME CSV "/folders/myfolders/project/Full (6).csv" TERMSTR=CRLF;
/** Import the CSV file. **/
PROC IMPORT DATAFILE=CSV
OUT=orion.MYCSV
DBMS=CSV
REPLACE
RUN;
/** Unassign the file reference. **/
FILENAME CSV;
However the log is showing error I have atteched a screen shot of the log
Like @Kurt_Bremser said rather than the line that says REPLACE it should say REPLACE;
Art, CEO, AnalystFinder.com
The closing semicolon of the proc import statement is missing.
Like @Kurt_Bremser said rather than the line that says REPLACE it should say REPLACE;
Art, CEO, AnalystFinder.com
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.