Skip to content

Instantly share code, notes, and snippets.

@pmbaumgartner
Last active December 22, 2015 08:19
Show Gist options
  • Save pmbaumgartner/6443936 to your computer and use it in GitHub Desktop.
Save pmbaumgartner/6443936 to your computer and use it in GitHub Desktop.
PROC EXPORT to Comma Separated Values (.csv) file
libname data "your-data-location";
proc export data=data.dataset
outfile="your-data-location\filename.csv"
dbms=csv;
run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment