enterprise guide - Converting Excel file into SAS Dataset -
i'm trying import dataset sas enterprise guide, having trouble 'converting' excel file new sas dataset file. easy way this? this:
libname libraryname 'filesource...' data project2 set exdata.project; <math> run;
but file have data in excel file... , can't find it
you close, if have ability access local files may work. may need play around sheet name. open library once it's assigned see how sas refers sheets.
libname mylib xlsx 'path xlsx file'; data want; set mylib.sheet_name; run; libname mylib;
otherwise if using eg on server , excel file local can import using gui tool.
Comments
Post a Comment