Date: Thu, 30 Jan 2003 05:57:23 -0800
Reply-To: "Beal, Dennis J." <DENNIS.J.BEAL@SAIC.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Beal, Dennis J." <DENNIS.J.BEAL@SAIC.COM>
Subject: suppressing TITLE in output file
Content-Type: text/plain; charset="iso-8859-1"
I am wanting to create a text file from within SAS but do not want a title
to be printed on the first line of the text file. My SAS code is as
follows:
options nonumber nodate;
data _null_;
file 'c:\mydir\output_file.txt' n=1 print linesize=180 pagesize=57;
put #1 @1 'ROW1';
run;
Even with the #1 in the put statement instructing it to put the text on the
first row it places it after the default title. I realize I can put a title
' '; before the put statement, but I want to suppress the title altogether.
Is there a way to do that?
Thanks for any help you can provide.
Dennis
Dennis J. Beal, M.S., M.S.
Statistician / Risk Analyst
Science Applications International Corporation
151 Lafayette Drive
Room 2003
P.O. Box 2501
Oak Ridge, TN 37831-2501
865-481-8736 (phone)
865-481-8714 (fax)
dennis.j.beal@saic.com (email)
|