<?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: Multiple graphs per page to multiple PDF pages in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/583259#M23204</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options leftmargin=.25in rightmargin=.25
        topmargin=.25in bottommargin=.25 number date;

ods pdf file="&amp;amp;path/tasks/stl_conf/conf_new/report18.pdf" style=calibri startpage=never notoc dpi=300;
title font=Helvetica bold h=10pt "Group1 vs Group2: Charts showing the change in variables with confidence interval";

ods layout gridded rows=2 columns=2 column_widths=(3in 3in);
ods region;
ods graphics/height=5in width=4in;
/*Plot age group1*/
proc sgplot data=hist2.pop_by_age1 noautolegend;
styleattrs datacolors=(BIB VLIGB) datacontrastcolors=(gray);
vbarparm category=Age_group response=Delta_Age /group=group groupdisplay=cluster fillpattern
   limitlower=L_Age limitupper=U_Age limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt 'Population Change by Age';
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Age' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot age group2*/
proc sgplot data=kansas1.pop_by_age noautolegend;
styleattrs datacolors=(virp parp) datacontrastcolors=(gray);
vbarparm category=var1 response=Delta_Total /group=group groupdisplay=cluster fillpattern
   limitlower=L_Total limitupper=U_Total limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt 'Population Change by Age';
   title 'Kansas City Population Change 2010 to 2017 by Age';
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Age' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot educational attainment - 25years and over1*/
proc sgplot data=hist2.age25_above1 noautolegend;
styleattrs datacolors=(BIB VLIGB) datacontrastcolors=(gray);
vbarparm category=educational_attainment response=Delta_25_above / group=group groupdisplay=cluster fillpattern
   limitlower=L_Ed limitupper=U_Ed limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by Educational attainment for 25 Years and Above";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Educational attainment' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot educational attainment - 25years and over2*/
proc sgplot data=kansas1.edu_attainment noautolegend;
styleattrs datacolors=(virp parp) datacontrastcolors=(gray);
vbarparm category=educational_attainment response=Delta_Total / group=group groupdisplay=cluster fillpattern
   limitlower=L_Total limitupper=U_Total limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by Educational attainment for 25 Years and Above";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Educational attainment' labelattrs=(size=8pt);
run;
ods startpage=now;
ods layout gridded rows=2 columns=2 column_widths=(3in 3in);
ods region;
ods graphics/height=5in width=4in;
/*Plot population by race1*/
proc sgplot data=hist2.race1 noautolegend;
styleattrs datacolors=(BIB VLIGB)datacontrastcolors=(gray);
vbarparm category=race response=Delta_Race / group=group groupdisplay=cluster fillpattern
   limitlower=L_Race limitupper=U_Race limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by Race";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Race' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot population by race2*/
proc sgplot data=kansas1.race1 noautolegend;
styleattrs datacolors=(virp parp) datacontrastcolors=(gray);
vbarparm category=race response=Delta_Total / group=group groupdisplay=cluster fillpattern
   limitlower=L_Total limitupper=U_Total limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by Race";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Race' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot population by school enrollment1*/
proc sgplot data=hist2.sch_enrollment1 noautolegend;
styleattrs datacolors=(BIB VLIGB)datacontrastcolors=(gray);
vbarparm category=school_enrollment response=Delta_Enrol / group=group groupdisplay=cluster fillpattern
   limitlower=L_Enrol limitupper=U_Enrol limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by School Enrollment";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='School Enrollment' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot population by school enrollment2*/
proc sgplot data=kansas1.sch_enrollment noautolegend;
styleattrs datacolors=(virp parp) datacontrastcolors=(gray);
vbarparm category=school_enrollment response=Delta_Total / group=group groupdisplay=cluster fillpattern
   limitlower=L_Total limitupper=U_Total limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by School Enrollment";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='School Enrollment' labelattrs=(size=8pt);
run;
ods layout end;

ods _all_ close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 22 Aug 2019 16:41:59 GMT</pubDate>
    <dc:creator>michokwu</dc:creator>
    <dc:date>2019-08-22T16:41:59Z</dc:date>
    <item>
      <title>Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582276#M23194</link>
      <description>&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My SAS output is a collection of graphs, the destination is PDF and the graphs are grouped by 4 per page. After the first page, the the graphs reverts to 1 per page. I used the startpage=now option after the first 4 graphs to signal the beginning of the 2nd page but still have the graphs 1 per page.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want the graphs to take the format of the 1st page where they are displayed 4 by page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="&amp;amp;path/tasks/stl_conf/conf_new/report14.pdf" style=calibri startpage=never notoc dpi=300;
title font=Helvetica bold h=10pt "Charts showing the change in variables with confidence interval";

ods layout gridded rows=2 columns=2 column_widths=(3in 3in);
ods region;
ods graphics/height=5in width=4in;
/*Plot Graphs*/
 - proc sgplot procedure for the first 4 graphs&lt;BR /&gt;&lt;BR /&gt;ods startpage=now;&lt;BR /&gt;ods region;&lt;BR /&gt;ods graphics/height=5in width=4in;&lt;BR /&gt;/*Plot Graphs*/
 - proc sgplot procedure for the next set of graphs&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 21:56:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582276#M23194</guid>
      <dc:creator>michokwu</dc:creator>
      <dc:date>2019-08-19T21:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582279#M23195</link>
      <description>Do you reset the startpage option after the first graph on the second page?</description>
      <pubDate>Mon, 19 Aug 2019 22:00:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582279#M23195</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-19T22:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582764#M23197</link>
      <description>&lt;P&gt;No, I did not&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 13:24:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582764#M23197</guid>
      <dc:creator>michokwu</dc:creator>
      <dc:date>2019-08-21T13:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582775#M23198</link>
      <description>&lt;P&gt;No, I did not reset the startpage option&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 13:44:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582775#M23198</guid>
      <dc:creator>michokwu</dc:creator>
      <dc:date>2019-08-21T13:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582845#M23199</link>
      <description>&lt;P&gt;Does that fix your problem then?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/255120"&gt;@michokwu&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;No, I did not reset the startpage option&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 15:01:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582845#M23199</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-21T15:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582883#M23200</link>
      <description>&lt;P&gt;I just did! did not help&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 16:20:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582883#M23200</guid>
      <dc:creator>michokwu</dc:creator>
      <dc:date>2019-08-21T16:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582891#M23201</link>
      <description>Can you post the code, so we can see what you ran? I'm about 99% sure that works if done correctly but I can't see what you did. You can change the SGPLOT to basic plots using data in SASHELP, they can be all the same if you want.</description>
      <pubDate>Wed, 21 Aug 2019 16:51:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/582891#M23201</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-21T16:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/583220#M23202</link>
      <description>&lt;P&gt;I used the same code as pasted, however, I have been tweaking it to see what works&lt;/P&gt;&lt;P&gt;When I included ods startpage=now/ reset; before the graphs in the 2nd page, it changes the page setup to 2 graphs per page with the graphs overlaying after the 4th graph&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I tried this after the 1st graph on the second page (i.e after the 5th graph)&amp;nbsp; it worked for the remaining graphs on the page but the 5th graph was on a single page. When I tried it before the 1st graph on the second page, the graphs overlay.&lt;/P&gt;&lt;P&gt;ods startpage=now;&lt;BR /&gt;ods region;&lt;BR /&gt;ods graphics/height=5in width=4in;&lt;/P&gt;&lt;P&gt;/*Plot Graphs*/&lt;BR /&gt;- proc sgplot procedure for the next set of graphs&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Per your observation, it could be a case of me not applying the code correctly, if you can help with the correct code, that will be helpful.&lt;/P&gt;&lt;P&gt;The original code is included in the post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 15:16:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/583220#M23202</guid>
      <dc:creator>michokwu</dc:creator>
      <dc:date>2019-08-22T15:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/583223#M23203</link>
      <description>I can't actually take that code and run it though, it won't generate output I can test to see your issue.</description>
      <pubDate>Thu, 22 Aug 2019 15:20:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/583223#M23203</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-22T15:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/583259#M23204</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options leftmargin=.25in rightmargin=.25
        topmargin=.25in bottommargin=.25 number date;

ods pdf file="&amp;amp;path/tasks/stl_conf/conf_new/report18.pdf" style=calibri startpage=never notoc dpi=300;
title font=Helvetica bold h=10pt "Group1 vs Group2: Charts showing the change in variables with confidence interval";

ods layout gridded rows=2 columns=2 column_widths=(3in 3in);
ods region;
ods graphics/height=5in width=4in;
/*Plot age group1*/
proc sgplot data=hist2.pop_by_age1 noautolegend;
styleattrs datacolors=(BIB VLIGB) datacontrastcolors=(gray);
vbarparm category=Age_group response=Delta_Age /group=group groupdisplay=cluster fillpattern
   limitlower=L_Age limitupper=U_Age limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt 'Population Change by Age';
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Age' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot age group2*/
proc sgplot data=kansas1.pop_by_age noautolegend;
styleattrs datacolors=(virp parp) datacontrastcolors=(gray);
vbarparm category=var1 response=Delta_Total /group=group groupdisplay=cluster fillpattern
   limitlower=L_Total limitupper=U_Total limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt 'Population Change by Age';
   title 'Kansas City Population Change 2010 to 2017 by Age';
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Age' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot educational attainment - 25years and over1*/
proc sgplot data=hist2.age25_above1 noautolegend;
styleattrs datacolors=(BIB VLIGB) datacontrastcolors=(gray);
vbarparm category=educational_attainment response=Delta_25_above / group=group groupdisplay=cluster fillpattern
   limitlower=L_Ed limitupper=U_Ed limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by Educational attainment for 25 Years and Above";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Educational attainment' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot educational attainment - 25years and over2*/
proc sgplot data=kansas1.edu_attainment noautolegend;
styleattrs datacolors=(virp parp) datacontrastcolors=(gray);
vbarparm category=educational_attainment response=Delta_Total / group=group groupdisplay=cluster fillpattern
   limitlower=L_Total limitupper=U_Total limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by Educational attainment for 25 Years and Above";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Educational attainment' labelattrs=(size=8pt);
run;
ods startpage=now;
ods layout gridded rows=2 columns=2 column_widths=(3in 3in);
ods region;
ods graphics/height=5in width=4in;
/*Plot population by race1*/
proc sgplot data=hist2.race1 noautolegend;
styleattrs datacolors=(BIB VLIGB)datacontrastcolors=(gray);
vbarparm category=race response=Delta_Race / group=group groupdisplay=cluster fillpattern
   limitlower=L_Race limitupper=U_Race limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by Race";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Race' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot population by race2*/
proc sgplot data=kansas1.race1 noautolegend;
styleattrs datacolors=(virp parp) datacontrastcolors=(gray);
vbarparm category=race response=Delta_Total / group=group groupdisplay=cluster fillpattern
   limitlower=L_Total limitupper=U_Total limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by Race";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='Race' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot population by school enrollment1*/
proc sgplot data=hist2.sch_enrollment1 noautolegend;
styleattrs datacolors=(BIB VLIGB)datacontrastcolors=(gray);
vbarparm category=school_enrollment response=Delta_Enrol / group=group groupdisplay=cluster fillpattern
   limitlower=L_Enrol limitupper=U_Enrol limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by School Enrollment";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='School Enrollment' labelattrs=(size=8pt);
run;
ods region;
ods graphics/height=5in width=4in;
/*Plot population by school enrollment2*/
proc sgplot data=kansas1.sch_enrollment noautolegend;
styleattrs datacolors=(virp parp) datacontrastcolors=(gray);
vbarparm category=school_enrollment response=Delta_Total / group=group groupdisplay=cluster fillpattern
   limitlower=L_Total limitupper=U_Total limitattrs=(color=vipr);
   title font=Helvetica bold h=8pt "Population Change by School Enrollment";
   yaxis valueattrs=(size=4pt) label='Population change' labelattrs=(size=8pt);
   xaxis valueattrs=(size=4pt) label='School Enrollment' labelattrs=(size=8pt);
run;
ods layout end;

ods _all_ close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Aug 2019 16:41:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/583259#M23204</guid>
      <dc:creator>michokwu</dc:creator>
      <dc:date>2019-08-22T16:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple graphs per page to multiple PDF pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/583620#M23213</link>
      <description>&lt;P&gt;Looks like you have a mismatch between the number of ODS LAYOUT GRIDDED statements (two) and the number of ODS LAYOUT END statements (one), add a second ODS LAYOUT END statement after the fourth graph before starting the second page.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 22:16:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-graphs-per-page-to-multiple-PDF-pages/m-p/583620#M23213</guid>
      <dc:creator>MichaelL_SAS</dc:creator>
      <dc:date>2019-08-23T22:16:05Z</dc:date>
    </item>
  </channel>
</rss>

