I'm trying to export a large SAS file to csv. I used
proc export data=study1
outfile='C:\Users\me\Documents\excel File\study1.csv'
dbms=csv;
run;
I get the error:
ERROR: Physical file does not exist, C:\Users\Ingrid\Documents\excel File\study1.csv.
Why is it showing an error? I thought the outfile is arbitrary and will create a study1.csv when the proc is executed?
I also tried doing file>export data and got a csv file. bu when I tried to open it it says it's not actually a csv file, but an SYLK file.
I hope I can make the proc export work.
Thanks all