In the SAS program that you have previouly created the following text can be inserted to save a portion of the data in an Excel spreadsheet.
|
Ods html file =’C:\NHANES\ DATA \Results\Creatinine.xls’ style =journal; |
Alternatively, you may save the whole data file into a permanent Excel file using the code below.
proc export data =Phthalate outfile = "c:\temp\Phthalatedata.xls" dbms =Excel2000 replace ; run ; |