Skip to content

Instantly share code, notes, and snippets.

@joosti
Last active August 29, 2015 14:10
Show Gist options
  • Save joosti/8ad0c0e3290f86608850 to your computer and use it in GitHub Desktop.
Save joosti/8ad0c0e3290f86608850 to your computer and use it in GitHub Desktop.
SAS, import xlsx
proc import
OUT = work.myData DATAFILE= "C:\temp\myData.xlsx"
DBMS = xlsx REPLACE;
SHEET = "worksheet1";
GETNAMES = YES;
run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment