<?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: sas reporting... in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483888#M287005</link>
    <description>&lt;P&gt;The ODS PDF destination allows for one title on a page. If there is a second output that begins on the same page, there is no new title.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See this thread for a way to add "titles".&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-GRAPH-and-ODS-Graphics/ODS-PDF-2-charts-per-page-titles-missing-on-2nd-chart/m-p/393986" target="_blank"&gt;https://communities.sas.com/t5/SAS-GRAPH-and-ODS-Graphics/ODS-PDF-2-charts-per-page-titles-missing-on-2nd-chart/m-p/393986&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 03 Aug 2018 19:18:56 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2018-08-03T19:18:56Z</dc:date>
    <item>
      <title>sas reporting...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483879#M287002</link>
      <description>&lt;P&gt;okay, i assume this should be a simple solution that i am just not coming up with but...i am new to sas reporting so i have two very large tables i am looking into creating a report for.&amp;nbsp; the reports are basicallly a summation of two variables grouped by a different variable for each report.&amp;nbsp; i have already built tables of the data i want on the report.&amp;nbsp; what i would like is to create a single pdf report with multiple tables &amp;amp; titles on it.&amp;nbsp; so it would look something like this...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;pdf start&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;title 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from table1;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;title 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from table2;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...4 more tables...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;footnote...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;end pdf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i would think this is possible but for some reason i keep getting a page break in between.&amp;nbsp; it does not have to be proc sql pulling the data also.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Aug 2018 18:18:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483879#M287002</guid>
      <dc:creator>me55</dc:creator>
      <dc:date>2018-08-03T18:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: sas reporting...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483882#M287003</link>
      <description>&lt;P&gt;Have you tried the startpage=no option in your code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file='path' startpage=no;&amp;nbsp;

&amp;lt;different procedures&amp;gt;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Aug 2018 18:57:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483882#M287003</guid>
      <dc:creator>svh</dc:creator>
      <dc:date>2018-08-03T18:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: sas reporting...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483885#M287004</link>
      <description>&lt;P&gt;that was part of it, i was putting the startpage=no in the wrong spot.&amp;nbsp; here is the code i am using...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_ NOPRINT;
	today1=put(date(),worddate18.);
	today2=put(date(),YYMMDD10.);
	call symput('worddate',today1);
	call symput('numdate',today2);
run;


ods pdf file="test.pdf" startpage=no;
options label;&lt;BR /&gt;&lt;BR /&gt;
title "Test Reporting";
Footnote Generated by &amp;amp;_CLIENTUSERNAME with SAS Enterprise Guide &amp;amp;_CLIENTVERSION on &amp;amp;worddate;

proc report data=RPT01 split="~" spanrows;
title1 'report 01';
column SOURCE AmtA AmtB;
run;
title1;

proc report data=RPT03 split="~" spanrows;
title2 'report 03';
column SOURCE AMT1 AMT2;
run;
title2;

title;
ods pdf close;
ods listing;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;now however, i do not get the title inbetween.&amp;nbsp; this does stack the reports on the pdf but does not put a title inbetween like i need to explain the output...&lt;/P&gt;</description>
      <pubDate>Fri, 03 Aug 2018 19:10:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483885#M287004</guid>
      <dc:creator>me55</dc:creator>
      <dc:date>2018-08-03T19:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: sas reporting...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483888#M287005</link>
      <description>&lt;P&gt;The ODS PDF destination allows for one title on a page. If there is a second output that begins on the same page, there is no new title.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See this thread for a way to add "titles".&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-GRAPH-and-ODS-Graphics/ODS-PDF-2-charts-per-page-titles-missing-on-2nd-chart/m-p/393986" target="_blank"&gt;https://communities.sas.com/t5/SAS-GRAPH-and-ODS-Graphics/ODS-PDF-2-charts-per-page-titles-missing-on-2nd-chart/m-p/393986&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Aug 2018 19:18:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483888#M287005</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-08-03T19:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: sas reporting...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483889#M287006</link>
      <description>&lt;P&gt;I've had this issue before, too. One workaround is to use ODS TEXT in the body of the report to add a title in the page. The TITLE statements are not that flexible and you can use ODS TEXT ='SAMPLE TITLE HERE' ; above your PROC REPORT code to insert text where you want it to go.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Aug 2018 19:20:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483889#M287006</guid>
      <dc:creator>svh</dc:creator>
      <dc:date>2018-08-03T19:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: sas reporting...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483895#M287007</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/181543"&gt;@svh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I've had this issue before, too. One workaround is to use ODS TEXT in the body of the report to add a title in the page. The TITLE statements are not that flexible and you can use ODS TEXT ='SAMPLE TITLE HERE' ; above your PROC REPORT code to insert text where you want it to go.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Or Proc ODSTEXT which allows a little more flexibility in some ways than ODS text and does not create table output.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Aug 2018 19:27:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-reporting/m-p/483895#M287007</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-08-03T19:27:52Z</dc:date>
    </item>
  </channel>
</rss>

