Skip to content

Instantly share code, notes, and snippets.

@joosti
Last active August 29, 2015 14:10
Show Gist options
  • Save joosti/5f38e5dcb044abb69836 to your computer and use it in GitHub Desktop.
Save joosti/5f38e5dcb044abb69836 to your computer and use it in GitHub Desktop.
SAS, import csv
filename MYFILE "C:\temp\myData.csv";
data myData;
infile MYFILE dsd delimiter="," firstobs=2 LRECL=32767 missover;
input id var1 var2 var3;
run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment