*** *** Import.sas. *** This program uses PROC CIMPORT to extract the NHTS datasets from the *** NHTS_v3.XPT SAS transport file. *** ***; *** LIBNAME and FILENAME statements must be updated to correspond to the *** users source and target directories; *** Change this filename value to the path of the unzipped SAS *** transport file; filename CXPORT1 'd:/temp/import/NHTS.xpt'; *** Change this libname value to the directory path where you want to store *** the NHTS 2001 SAS datasets; libname NHTS2001 'd:/temp/import'; *** Perform the import; proc cimport library=NHTS2001 infile=CXPORT1; run; proc contents data=NHTS2001._all_; run;