Skip to content

Instantly share code, notes, and snippets.

@statgeek
Created August 29, 2017 00:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save statgeek/0a12e3a8eaade91f044da3160bcfd08e to your computer and use it in GitHub Desktop.
Save statgeek/0a12e3a8eaade91f044da3160bcfd08e to your computer and use it in GitHub Desktop.
SAS - Export Data Set to Excel File
/*Sample code that demonstrates how to export an excel file using SAS UE*/
proc export data=sashelp.class outfile='/folders/myfolders/Class.XLSX' dbms=xlsx replace; run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment