Hi Cynthia, Thanks for your help. I now understand that I can't use a C: drive location, which I didn't before, so thank you! And I have realised the code I was using was wrong, so thank you again! What I'm trying to do, is extract and copy NHANES data files to permanent libraries, and the code they have given me (below), I now realise I can't use because of what you have said. ************************************************************
* Program: C:\NHANES\DownloadData_Task3.sas *
* Proposal: Read SAS Transport File and Create SAS Dataset *
***********************************************************;
libname NH "C:\NHANES\DATA";
libname XP xport "C:\NHANES\TEMP\BPX_b.xpt";
/*please remember to change your library to the directory location you downloaded your files*/
proc copy in=XP out=NH;
run; I have attached the steps listed on how they recommend to do it, but I don't think these would work in SAS University Edition. Would you be able to offer some advice on how I could alter the code, to make it work for me? Thank you so much!
... View more