LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (January 2005, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 6 Jan 2005 08:51:48 -0500
Reply-To:   "Chang Y. Chung" <chang_y_chung@HOTMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Chang Y. Chung" <chang_y_chung@HOTMAIL.COM>
Subject:   Re: Adding Header/Footers to raw data file.
Comments:   To: mark.barlow@FINSERVICES.CO.UK

On Thu, 6 Jan 2005 05:01:39 -0800, mark b <mark.barlow@FINSERVICES.CO.UK> wrote:

>I have successfully created a .dat file using the below code. > >data _null_; > file "j:\sales&date.dat" lrecl=60; > set sales; > put > record_type $1 > batch_header_number $2-9 > policy_number $10-18 > title_desc $19-26 > initials $27-30 > surname $31-60 >; >run; > >Is it possible to add a header and footer in the file being created?

Hi, Mark,

One way to do that is to use "options pagesize=###;" to set the number of lines on a page, then use title "my header;" and footnote "my footer;"

Cheers, Chang


Back to: Top of message | Previous page | Main SAS-L page