Hi, I'm brand new to SAS so apologies if this is an easily solvable issue. I'm trying to extract an XPT file to a SAS file. The file locations are all correct, and the file is named correctly in the TEMP folder. I've been playing around with this for quite some time and just can't get it to work. Here is my code: libname NH "C:\SAS\NewData"; libname XP xport "C:\SAS\TEMP\wb.xpt"; proc copy in=XP out=NH; run; Here is the log: NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR 24 25 GOPTIONS ACCESSIBLE; 26 libname NH "C:\SAS\NewData"; NOTE: Library NH does not exist. 27 libname XP xport "C:\SAS\TEMP\wb.xpt"; NOTE: Libref XP was successfully assigned as follows: Engine: XPORT Physical Name: C:\SAS\TEMP\wb.xpt 28 proc copy in=XP out=NH; 29 run; WARNING: Library NH does not exist. NOTE: Input library XP is sequential. ERROR: Physical file does not exist, C:\SAS\TEMP\wb.xpt. NOTE: Statements not processed because of errors noted above. NOTE: PROCEDURE COPY used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The SAS System stopped processing this step because of errors. If anyone has any good ideas that would be great! Thanks!
... View more