<?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: ODS PDF - Keeping PROC REPORT and GCHART on same page in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Keeping-PROC-REPORT-and-GCHART-on-same-page/m-p/506289#M21917</link>
    <description>FYI - I've moved your posts to the ODS reporting forum, as that's more relevant and combined your double posts into one. Not sure if that was intentional on your part or not.</description>
    <pubDate>Sun, 21 Oct 2018 03:00:49 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-10-21T03:00:49Z</dc:date>
    <item>
      <title>ODS PDF - Keeping PROC REPORT and GCHART on same page</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Keeping-PROC-REPORT-and-GCHART-on-same-page/m-p/506286#M21913</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I can't keep this table from PROC REPORT and&amp;nbsp;barchart&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;from GCHART in one page. Can anyone tell me how I can do that. On my ODS PDF output the&amp;nbsp;small table from PROC REPORT stays in the first page, but the GCHART&amp;nbsp;goes to the next page occupying the whole page. Here is the code I was trying:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%LET TITLE4 =Test;

ODS PDF CLOSE;

OPTIONS NODATE NONUMBER;
ODS GRAPHICS / RESET=ALL;

ODS PDF 
FILE='C:\\Rpt01.PDF' STARTPAGE=NO;

    OPTIONS(PAGEBREAK='NO') STYLE=EGDEFAULT;

TITLE4 ls=1 font='helvetica/bold' height=12pt "&amp;amp;TITLE4.";

PROC GCHART DATA=Apple.Prop_Master;
WHERE Sol_RE_Title='Maritimes';
LABEL prop_status='Statuses';
VBAR Prop_Status / DISCRETE outside=PERCENT width=10 DESCENDING; 
RUN;
QUIT;
TITLE;



PROC REPORT DATA=Apple.Sol_assign;
WHERE  Sol_RE_Title='Maritimes';
COLUMN Sol_RE_Title Count;
DEFINE Sol_RE_Title / DISPLAY "Name";
DEFINE Count / DISPLAY "Portfolio Size";
RUN;


TITLE;
ODS _ALL_ CLOSE;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Oct 2018 02:14:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Keeping-PROC-REPORT-and-GCHART-on-same-page/m-p/506286#M21913</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2018-10-21T02:14:15Z</dc:date>
    </item>
    <item>
      <title>ODS PDF - Keeping PROC REPORT and GCHART  on same page</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Keeping-PROC-REPORT-and-GCHART-on-same-page/m-p/506285#M21916</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I can't keep this table from PROC REPORT and&amp;nbsp;barchart from GCHART in one page. Can anyone tell me how I can do that. On my ODS PDF output the&amp;nbsp;small table from PROC REPORT stays in the first page, but the GCHART&amp;nbsp;goes to the next page occupying the whole page. Here is the code I was trying:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%LET TITLE4 =Test;

ODS PDF CLOSE;

OPTIONS NODATE NONUMBER;
ODS GRAPHICS / RESET=ALL;

ODS PDF 
FILE='C:\\Rpt01.PDF' STARTPAGE=NO;

    OPTIONS(PAGEBREAK='NO') STYLE=EGDEFAULT;

TITLE4 ls=1 font='helvetica/bold' height=12pt "&amp;amp;TITLE4.";

PROC GCHART DATA=Apple.Prop_Master;
WHERE Sol_RE_Title='Maritimes';
LABEL prop_status='Statuses';
VBAR Prop_Status / DISCRETE outside=PERCENT width=10 DESCENDING; 
RUN;
QUIT;
TITLE;



PROC REPORT DATA=Apple.Sol_assign;
WHERE  Sol_RE_Title='Maritimes';
COLUMN Sol_RE_Title Count;
DEFINE Sol_RE_Title / DISPLAY "Name";
DEFINE Count / DISPLAY "Portfolio Size";
RUN;


TITLE;
ODS _ALL_ CLOSE;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 21 Oct 2018 02:12:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Keeping-PROC-REPORT-and-GCHART-on-same-page/m-p/506285#M21916</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2018-10-21T02:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF - Keeping PROC REPORT and GCHART on same page</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Keeping-PROC-REPORT-and-GCHART-on-same-page/m-p/506288#M21914</link>
      <description>Is the table big enough to fit on the same page? Do you get an error anywhere? I'm getting an error on this line:&lt;BR /&gt;&lt;BR /&gt;OPTIONS(PAGEBREAK='NO') STYLE=EGDEFAULT;</description>
      <pubDate>Sun, 21 Oct 2018 02:56:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Keeping-PROC-REPORT-and-GCHART-on-same-page/m-p/506288#M21914</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-21T02:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF - Keeping PROC REPORT and GCHART on same page</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Keeping-PROC-REPORT-and-GCHART-on-same-page/m-p/506289#M21917</link>
      <description>FYI - I've moved your posts to the ODS reporting forum, as that's more relevant and combined your double posts into one. Not sure if that was intentional on your part or not.</description>
      <pubDate>Sun, 21 Oct 2018 03:00:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Keeping-PROC-REPORT-and-GCHART-on-same-page/m-p/506289#M21917</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-21T03:00:49Z</dc:date>
    </item>
  </channel>
</rss>

