Hi everyone, I am new to SAS programming and I am trying to read multiple CSV files into SAS. I have tried using the infile statement with a wildcard to read all the files in a folder, but it doesn't seem to be working. Can someone please guide me on how to read multiple CSV files in SAS? Here's the code I am using: filename files "/path/to/folder/*.csv";
data mydata;
infile files dlm=',' firstobs=2;
input var1 var2 var3;
run; I am not getting any errors, but it seems like only the first file is being read. I have searched online for a solution but haven't been able to find one that works for me. Any help would be greatly appreciated. Thank you!
... View more