<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Controlling &amp;quot;TITLE&amp;quot; OUTPUT  in proc print. in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Controlling-quot-TITLE-quot-OUTPUT-in-proc-print/m-p/6635#M2592</link>
    <description>Eugene,&lt;BR /&gt;
&lt;BR /&gt;
  You didn't say what kind of output you're generating.  I assume that it's Listing.  If so, you could try setting your system LINESIZE option to a suitably large value, say 10000, e.g.:&lt;BR /&gt;
[pre]&lt;BR /&gt;
options linesize=10000;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS</description>
    <pubDate>Tue, 29 Jan 2008 18:58:51 GMT</pubDate>
    <dc:creator>David_SAS</dc:creator>
    <dc:date>2008-01-29T18:58:51Z</dc:date>
    <item>
      <title>Controlling "TITLE" OUTPUT  in proc print.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Controlling-quot-TITLE-quot-OUTPUT-in-proc-print/m-p/6634#M2591</link>
      <description>they way my  report is set up right now is  proc print  prints N number of variables and report is broken down BY  say variable x. &lt;BR /&gt;
&lt;BR /&gt;
Problem is title is printing   after each break in report   example &lt;BR /&gt;
&lt;BR /&gt;
        state report  &amp;lt;--- title 	&lt;BR /&gt;
&lt;BR /&gt;
state     employee &lt;BR /&gt;
1               a&lt;BR /&gt;
1               b&lt;BR /&gt;
1               c&lt;BR /&gt;
1               d&lt;BR /&gt;
&lt;BR /&gt;
 state report  &lt;BR /&gt;
&lt;BR /&gt;
state     employee &lt;BR /&gt;
2               a&lt;BR /&gt;
2               b&lt;BR /&gt;
2               c&lt;BR /&gt;
2               d&lt;BR /&gt;
&lt;BR /&gt;
I want title printed only once at the top of the report and using data step is not an option for me . I mean i tried to supress it thru blank title but it did not work it suppresed title period. &lt;BR /&gt;
&lt;BR /&gt;
How do i do it ?</description>
      <pubDate>Tue, 29 Jan 2008 17:46:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Controlling-quot-TITLE-quot-OUTPUT-in-proc-print/m-p/6634#M2591</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-01-29T17:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling "TITLE" OUTPUT  in proc print.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Controlling-quot-TITLE-quot-OUTPUT-in-proc-print/m-p/6635#M2592</link>
      <description>Eugene,&lt;BR /&gt;
&lt;BR /&gt;
  You didn't say what kind of output you're generating.  I assume that it's Listing.  If so, you could try setting your system LINESIZE option to a suitably large value, say 10000, e.g.:&lt;BR /&gt;
[pre]&lt;BR /&gt;
options linesize=10000;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS</description>
      <pubDate>Tue, 29 Jan 2008 18:58:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Controlling-quot-TITLE-quot-OUTPUT-in-proc-print/m-p/6635#M2592</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2008-01-29T18:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling "TITLE" OUTPUT  in proc print.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Controlling-quot-TITLE-quot-OUTPUT-in-proc-print/m-p/6636#M2593</link>
      <description>David, i dont think it will work I already have linesize at MAX, and title output is not controled by how many lines report has but by "BY variable" ; &lt;BR /&gt;
&lt;BR /&gt;
below is example code. BTW I am trying to generate spread sheet. I need title to print only once . &lt;BR /&gt;
ODS HTML FILE=REPTDY STYLE=MINIMAL RS=NONE ;                      &lt;BR /&gt;
OPTION NOBYLINE MISSING='' LINESIZE=MAX CENTER NONUMBER NODATE ;  &lt;BR /&gt;
PROC PRINT DATA=TODAYVOID;                                        &lt;BR /&gt;
 TITLE  "&lt;FONTSIZE&gt;&lt;B&gt;             &lt;BR /&gt;
         COMMERCIAL REFUND REPORT FOR TODAY    &lt;/B&gt;"; &lt;BR /&gt;
    VAR CONTRACT_NUM                                              &lt;BR /&gt;
        AR_SEQ_NUM                                                &lt;BR /&gt;
        LAST_UPDT_USER_ID ;            &lt;BR /&gt;
   LABEL CONTRACT_NUM         = ' CONTRACT NUMBER'          &lt;BR /&gt;
         AR_SEQ_NUM           = ' AR SEQUENCE NUMBER'       &lt;BR /&gt;
         LAST_UPDT_USER_ID    = ' USERID '                  &lt;BR /&gt;
         ACTION_CD            = ' ACTION CODE'              &lt;BR /&gt;
         BILL_AMT = ' FROM DOS' ;                           &lt;BR /&gt;
     BY CONTRACT_NUM ;                                      &lt;BR /&gt;
     PAGEBY CONTRACT_NUM ;                                  &lt;BR /&gt;
 RUN;&lt;BR /&gt;
&lt;BR /&gt;
BTW forum does not want to paste my sample code correctly in order to see it lined up correctly clikc reply and press "quote original"&lt;BR /&gt;
Message was edited by: EugeneG&lt;BR /&gt;
&lt;BR /&gt;
Message was edited by: EugeneG

Message was edited by: EugeneG&lt;/FONTSIZE&gt;</description>
      <pubDate>Tue, 29 Jan 2008 19:05:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Controlling-quot-TITLE-quot-OUTPUT-in-proc-print/m-p/6636#M2593</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-01-29T19:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling "TITLE" OUTPUT  in proc print.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Controlling-quot-TITLE-quot-OUTPUT-in-proc-print/m-p/6637#M2594</link>
      <description>Eugene,&lt;BR /&gt;
&lt;BR /&gt;
  Because you're using ODS HTML, you can try the TEXT= option, e.g.:&lt;BR /&gt;
[pre]&lt;BR /&gt;
title;&lt;BR /&gt;
ods html file=reptdy style=minimal ... text="state report";&lt;BR /&gt;
&lt;BR /&gt;
[...]&lt;BR /&gt;
&lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
There's a possibility that you'll have to modify the UserText style element to get the desired appearance for the TEXT= text.  I recommend that you follow up with Technical Support if that turns out to be the case.&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS&lt;BR /&gt;
&lt;BR /&gt;
P.S.  The pre and /pre directives (enclosed in square brackets) will render preformatted text, which is handy for SAS code.&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS</description>
      <pubDate>Tue, 29 Jan 2008 19:30:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Controlling-quot-TITLE-quot-OUTPUT-in-proc-print/m-p/6637#M2594</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2008-01-29T19:30:37Z</dc:date>
    </item>
  </channel>
</rss>

