I am using the following code within a macro to export files in SAS University and the resulting file is a word document.
proc export data=normal&i
outfile="folders/mufolders/regr/nnormal&i"
dbms=csv replace;run;
How can I edit this code to have the output be a *.csv file?
I'm surprised that worked, you need to change your outfiles, everything else looks correct.
1. Add a csv extension
2. Add a / before folders in path.
Outfiles= "/folders/myfolders/regr/nnormal&i..csv"
I'm surprised that worked, you need to change your outfiles, everything else looks correct.
1. Add a csv extension
2. Add a / before folders in path.
Outfiles= "/folders/myfolders/regr/nnormal&i..csv"
Worked okay and csv files were output.
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.