Hello, All I have a csv file "abc.csv", it has 5000 variables (var1-var5000, column1 through column5000), and nearly million rows. However I am only interested in var1, var1390,var3782, and var4703. I know I can do it using following code: filename myfile "abc.csv"; data want(keep=var1 var1390 var3782 var4703); infile myfile; input var1-var5000; run; However the code do waste time inputing those un-wanted columns. My question is: is there a way to input only wanted columns, i.e. var1, var1390,var3782, and var4703?
... View more