did the libname get successfully assigned? if yes, do a test using proc contents data=custfm._all_;/* this will list you the datasets in the excel that you are reading */ run; If there aint any, well, you would have to know where your xls file is placed, i mean the exact location, find that, get it's path and replace exactly in the syntax and do again. Alternatively, import the xls file to your SAS environment using the import wizard or proc import and get started with your SAS stuff. If this fails too, store the file as csv file and read with infile and input statements. Have fun!!!
... View more