|
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
|