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 finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.