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
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.