what you mean is PC files server ? yes , i have installed that .
now the code works , but in some conditions , but i feel somewhere is wrong , let me show you
first , i invert the sales.xls to SAS data set with import wizard and use the sasuser as the libref .
then , i write the code as following which does work
libname sasuser "C:\Users\Documents\Sales.xls";
proc print data = sasuser.sales;
where EmpID = '9888' or EmpID = '0177';
run;
but what i want to say ——i have invert the sales.xls to SAS data set ,why i access it directly instead of sales.xls ?
... View more