To import a raw CSV file to SAS, you can use a proc import function: Proc Import Datafile = "File Directory/File.csv" Out = library.dataset DBMS = csv Replace; run; The datafile section needs to include the file path all the way to the file name while the out section lets you name a library for your dataset or create a temporary dataset. the 'replace' option is not necessary but if you'll need it if you want to overwrite a dataset with the same name as the dataset in the 'out' statement. Also, if you change the proc import, and re-run it or re-run it to show someone; the replace statement will prevent errors when you decide to re-run the code.
... View more