<?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: Remove previous title from page (ods pdf/ ods gridded layout) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Remove-previous-title-from-page-ods-pdf-ods-gridded-layout/m-p/838282#M331426</link>
    <description>I have two pages. I just wanted to  leave the title in page 1 and  delete it from  page2 but it doesn't even work with  title; &lt;BR /&gt;as you suggested. &lt;BR /&gt;All the way, thankyou.</description>
    <pubDate>Wed, 12 Oct 2022 18:33:20 GMT</pubDate>
    <dc:creator>Anita_n</dc:creator>
    <dc:date>2022-10-12T18:33:20Z</dc:date>
    <item>
      <title>Remove previous title from page (ods pdf/ ods gridded layout)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-previous-title-from-page-ods-pdf-ods-gridded-layout/m-p/838045#M331387</link>
      <description>&lt;P&gt;Dear all,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have this code&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods region;
title1 h=8pt color=dimgray "Baseball players";
title3 h=6pt color=dimgray "players by league";

ods pdf file="test.pdf" startpage=never style=journal;  

ods layout gridded  columns=2 rows=2 advance=proc column_gutter=0.1in row_gutter=0.1in;
ods graphics / width=3.5in noborder;

title3 " ";
title1 " ";
 proc sgplot data=sashelp.baseball;
 where league = "American";
 vbar team / response=nruns group=division;
 run;

proc sgplot data=sashelp.baseball;
 where league = "American";
 vbar team / response=nruns group=division;
 run;

ods layout end;

ods region;
ods graphics / width=3.5in  noborder ;
ods layout gridded columns=2 rows=2 advance=proc column_gutter=0.1in row_gutter=0.1in;


proc sgplot data=sashelp.baseball;
 where div = "NE";
 vbar team / response=nruns group=division;
 run;

proc sgplot data=sashelp.baseball;
 where div = "NW";
 vbar team / response=nruns group=division;
 run;
ods layout end;

ods pdf close;






&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and wish to remove the title (the title should be on the first page but not on the second page) from the second page. I don't really know my this is not working. Please help&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 13:19:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-previous-title-from-page-ods-pdf-ods-gridded-layout/m-p/838045#M331387</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2022-10-12T13:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remove previous title from page (ods pdf/ ods gridded layout)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-previous-title-from-page-ods-pdf-ods-gridded-layout/m-p/838066#M331399</link>
      <description>&lt;P&gt;When I run your code there is only one page created so I do not understand your comment about pages.&lt;/P&gt;
&lt;P&gt;Perhaps you may not be clear on what Startpage=never does.&lt;/P&gt;
&lt;PRE&gt;NEVER
specifies not to insert page breaks, even before graphics procedures.
&lt;/PRE&gt;
&lt;P&gt;There would also tend to be interactions with layout instructions. I won't claim to be an expert on those as I don't use PDF very often.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To clear titles you use something like&lt;/P&gt;
&lt;PRE&gt;title;&lt;/PRE&gt;
&lt;P&gt;If you provide a value in quotes then you create title of blanks, you don't clear them. The above will clear the title1 and all higher numbered title lines. You do not need to address each title to clear it. Example: Title3; would clear title lines 3 through 10, if present but leave 1 and 2 alone.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 14:29:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-previous-title-from-page-ods-pdf-ods-gridded-layout/m-p/838066#M331399</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-10-12T14:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Remove previous title from page (ods pdf/ ods gridded layout)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-previous-title-from-page-ods-pdf-ods-gridded-layout/m-p/838282#M331426</link>
      <description>I have two pages. I just wanted to  leave the title in page 1 and  delete it from  page2 but it doesn't even work with  title; &lt;BR /&gt;as you suggested. &lt;BR /&gt;All the way, thankyou.</description>
      <pubDate>Wed, 12 Oct 2022 18:33:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-previous-title-from-page-ods-pdf-ods-gridded-layout/m-p/838282#M331426</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2022-10-12T18:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Remove previous title from page (ods pdf/ ods gridded layout)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-previous-title-from-page-ods-pdf-ods-gridded-layout/m-p/838287#M331428</link>
      <description>&lt;P&gt;Still don't see how you get two pages.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Easiest may be to use either ODS TEXT or possibly Proc ODSTEXT to place text when wanted instead of title statements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ods text='Line of text';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 19:00:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-previous-title-from-page-ods-pdf-ods-gridded-layout/m-p/838287#M331428</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-10-12T19:00:27Z</dc:date>
    </item>
  </channel>
</rss>

