I am trying to export a data table to txt file WITHOUT the column headers. I feel like I am doing this correctly but I keep getting the statement is not valid or used out of order error. What am I doing wrong?
PROC EXPORT DATA= WORK.Final
OUTFILE= "C:\Documents and Settings\dubauaw\Desktop\r1.txt"
DBMS=TAB REPLACE;
putnames = no;
RUN;