Note: "Invalid data for ID in line 10158465 1-24. ID =. TYPE = .
Does the CSV file really only have two columns? Definitely do NOT use PROC IMPORT in that case.
data want;
infile "\path\file.csv" dsd truncover firstobs=2;
length id $30 type $20 ;
input id type;
run;
And if it does have more columns the data step code is not really any harder.
... View more