Since you saved it to your hard drive you have to trick EG into realizing what your local computer is called. I have found that the easiest way to do this it to open up SAS in this case I guess it is EG, so I don't know exactly how or where you will have to ask the file to open, but then go to my computer and open up your hard drive. Using our schools virtual SAS (on a UNIX platform), my hard drive shows up under \\Client\C$ which is what would replace C: in most of your requests, so if you have saved the file to your desktop your file path would be \\Client\C$\Desktop. But once again it all depends on where things are located and the operating system. One last thing, the reason that the libname statement you wrote didn't work was because you included custfm.xls in the libname, a libname should be a folder not a file. If you wanted to point at the file and read it in your best bet may be to write it like this: filename serv ( '/tutorials/eg/data/ecprg1/custfm.xls'); data readable; infile serv; input; run; or just write it in a proc import statement proc import out = want datafile = '/tutorials/eg/data/ecprg1/custfm.xls' dbms = excel replace; getnames=yes; guessingrows=1000; run; Hope this helps.
... View more