Hello everyone, I have a excel file named all.xls, in the excel file there are three sheets named sheetone,sheettwo and sheetthree When after I use libname engine: libname xl "c:\temp\all.xls"; I can treat each individual sheet as SAS table. But the problem is the Sheet's name will be changed with an additional '$' symbol,,,,,sucha as sheetone will be changed to sheetone$. and I can open to preview the dataset but can't create other datast use this,such as if I use : data sheetone; set xl.sheetone$;/*I also try set xl.sheetone,still not work*/ run; this will cause error: ERROR: File XL.sheetone$.DATA does not exist. ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, (, ;, END, KEY, KEYS, NOBS, OPEN, POINT, _DATA_, _LAST_, _NULL_. so how I cloud make use this dataset? Thanks Mike
... View more