Hi: When you say that you "need to export this data into notepad as a txt file", do you mean you need to export ONLY the data or you need a PROC REPORT type report in a TEXT file. You can simply use ODS LISTING FILE= if you want the PROC REPORT output in Notepad/TXT file, however, this will send your SAS titles to the TXT file too. Something like the program below. Otherwise, you could do something with a DATA Step program. Cynthia ods _all_ close; ods listing file='c:\temp\myreport.txt'; options nodate number pageno=1; proc report data=sashelp.class ls=80 ps=60; title 'This is the Title'; column name sex age height weight; define name / order; define sex / display f=$3.; define age / display; define height / display; define weight / display; run; ods listing close;
... View more