How do I find out which SAS it is beyond 9.4? It's on my university's computers, if this information helps in any way. I ran the code as you sent me as: libname libsas 'C:\libsas\finaldata'; data libsas.findata; filename dir pipe "dir /b c:\libsas\finaldata"; data _null_; infile dir; input; put _infile_; run; and received: 10 libname libsas 'C:\libsas\finaldata'; NOTE: Library LIBSAS does not exist. 11 data libsas.findata; 12 13 filename dir pipe "dir /b c:\libsas\finaldata"; ERROR: Library LIBSAS does not exist. NOTE: The SAS System stopped processing this step because of errors. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 14 data _null_; 15 infile dir; 16 input; 17 put _infile_; 18 run; NOTE: The infile DIR is: Unnamed Pipe Access Device, PROCESS=dir /b c:\libsas\finaldata,RECFM=V, LRECL=32767 Stderr output: File Not Found NOTE: 0 records were read from the infile DIR. NOTE: DATA statement used (Total process time): real time 0.06 seconds cpu time 0.00 seconds Please let me know if I inputted anything incorrectly.
... View more