Date: Thu, 29 Sep 2005 01:46:29 +0000
Reply-To: toby dunn <tobydunn@HOTMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: toby dunn <tobydunn@HOTMAIL.COM>
Subject: Re: Multiple line titles in SAS.
In-Reply-To: <200509290140.j8SNxCI1002458@malibu.cc.uga.edu>
Content-Type: text/plain; format=flowed
Howard,
I started to play with this idea thios afternoon in ODS using RTF and HTML
also with a second title statement. As is, it wont work with either if them
but I think with a little tweking here and there it can work.
Toby Dunn
From: "Howard Schreier <hs AT dc-sug DOT org>" <nospam@HOWLES.COM>
Reply-To: "Howard Schreier <hs AT dc-sug DOT org>" <nospam@HOWLES.COM>
To: SAS-L@LISTSERV.UGA.EDU
Subject: Re: Multiple line titles in SAS.
Date: Wed, 28 Sep 2005 21:40:14 -0400
I think this will have to be adapted for different environments. In
particular, I don't think it will work for all ODS destinations.
On Wed, 28 Sep 2005 12:29:18 -0700, Friar Broccoli <EliasRK@GMAIL.COM>
wrote:
>Hi All;
>
>In frustration with having to constantly rename my title
>lines on multiline titles, I finally worked out the following
>alternative:
>
>Existing method:
>
> TITLE1 "Line one";
> TITLE2 "~~~~~~~~";
> TITLE3 "Line two";
> TITLE4 "--------";
> TITLE5 " ";
> TITLE6 "Line above is blank";
> TITLE7 "__________";
>
>Alternative method:
>
> %let CRLF = '0D0A'x;
>
> TITLE "Line one"
> &CRLF "~~~~~~~~"
> &CRLF "Line two"
> &CRLF "--------"
> &CRLF
> &CRLF "Line above is blank"
> &CRLF "__________"
> &CRLF;
>
>Cordially;
>
>Keith Elias
|