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

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -