Maxim 1: Read the Documentation.
In this case, the documentation for the PROC IMPORT Statement
Your mistake will be obvious.
The position of the ERROR indicator in the log will also provide a clue which part of the statement is wrong.
Proc import datafile = "path\name_file.csv"
out = name_output dbms = dlm replace ;
delimiter = ";" ;
getnames = yes ; /* depend of your data */
guessingrows=500; /* facultative, by default 20*/
run ;
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.