Hi AnaV, As I know Till Now SAS didn't develop a technique to import several CSV files at once. but, you can use macro program to do that i.e. %Macro ReadCSV (infile , outfile ); PROC IMPORT OUT= &ofile DATAFILE= &infile DBMS=CSV REPLACE; GETNAMES=YES; DATAROW=2; RUN; %Mend ReadCSV; %ReadCSV("F:\SAS Institutional Ownership\46_q1_2000.csv", work.ofile1); %ReadCSV( "F:\SAS Institutional Ownership\45_q2_2000.csv", work.ofile); and so on for other files also there is other advanced technique for reading all files from one folder at once - using macros also. good luck
... View more