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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.