<?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 Combine multiple PDFs into one in SAS in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37950#M628</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to combine several PDF files into a single document in SAS?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's our workflow:&lt;/P&gt;&lt;P&gt;1. Data in SAS&lt;/P&gt;&lt;P&gt;2. Graphic templates set up in Excel&lt;/P&gt;&lt;P&gt;3. Use DDE to create graphic products and output to PDF through Excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, we need to combine all of those SAS-DDE-Excel produced PDFs into a single document using SAS.&amp;nbsp; I know it's possible to direct multiple products into a single PDF using ODS PDF FILE=, but we're creating PDFs through Excel, not SAS (and unfortunately can't change the workflow...).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jul 2011 23:39:29 GMT</pubDate>
    <dc:creator>ask100q</dc:creator>
    <dc:date>2011-07-27T23:39:29Z</dc:date>
    <item>
      <title>Combine multiple PDFs into one in SAS</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37950#M628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to combine several PDF files into a single document in SAS?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's our workflow:&lt;/P&gt;&lt;P&gt;1. Data in SAS&lt;/P&gt;&lt;P&gt;2. Graphic templates set up in Excel&lt;/P&gt;&lt;P&gt;3. Use DDE to create graphic products and output to PDF through Excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, we need to combine all of those SAS-DDE-Excel produced PDFs into a single document using SAS.&amp;nbsp; I know it's possible to direct multiple products into a single PDF using ODS PDF FILE=, but we're creating PDFs through Excel, not SAS (and unfortunately can't change the workflow...).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2011 23:39:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37950#M628</guid>
      <dc:creator>ask100q</dc:creator>
      <dc:date>2011-07-27T23:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Combine multiple PDFs into one in SAS</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37951#M629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; I believe you have to use an Adobe product or a third-party PDF creation package to combine multiple PDF files (however they were created) into 1 PDF file. SAS cannot do it. Normally, you put multiple SAS outputs into 1 PDF file by doing something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt;ods pdf file='makeone.pdf';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt;** proc print code;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt;** sas/graph code;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt;** some other proc code;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt;** Maybe some other sas/graph code;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt;ods pdf close;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In the above job, all 4 procedure outputs will go into 1 PDF file. You might try to replicate your Excel graphs using SAS/GRAPH or the SG procedures -- in which case, you could alter your process to do everything in SAS instead of SAS, DDE and Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise, if you do not want to go down the SAS/GRAPH road, you may want to investigate third-party applications that can combine multiple PDFs into 1 PDF file or investigate Adobe products, such as Adobe Acrobat. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2011 17:14:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37951#M629</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-08-01T17:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: Combine multiple PDFs into one in SAS</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37952#M630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Hi, I am not using Adobe's products to create PDF files. I am using another &lt;A href="http://www.yiigo.com/guides/csharp/how-to-generate-pdf.shtml"&gt;&lt;SPAN style="color: #000000;"&gt;PDF creation tool&lt;/SPAN&gt;&lt;/A&gt; instead of Adobe to create multi pages PDFs. You can also google it and select a &lt;A href="http://www.yiigo.com/guides/csharp/how-to-process-pdf.shtml"&gt;&lt;SPAN style="color: #000000;"&gt;PDF processor&lt;/SPAN&gt;&lt;/A&gt; whose way of processing is simple and fast to help you with the related work. It will be better if it is totally manual and can be customized by users according to our own favors. Remember to check its free trial package first if possible. I hope you success. Good luck.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Arron&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Nov 2013 08:40:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37952#M630</guid>
      <dc:creator>arronlee</dc:creator>
      <dc:date>2013-11-28T08:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Combine multiple PDFs into one in SAS</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37953#M631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd recommend giving this article a read.&amp;nbsp; It should be able to do pretty much what you'd like to do with a few modifications:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://analytics.ncsu.edu/sesug/2011/BB15.Welch.pdf" title="http://analytics.ncsu.edu/sesug/2011/BB15.Welch.pdf"&gt;http://analytics.ncsu.edu/sesug/2011/BB15.Welch.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 07:59:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37953#M631</guid>
      <dc:creator>statistician13</dc:creator>
      <dc:date>2013-12-20T07:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Combine multiple PDFs into one in SAS</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37954#M632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not currently possible to append to a &lt;SPAN style="color: #4f4f4f;"&gt;&lt;A href="http://www.rasteredge.com/how-to/vb-net-imaging/pdf-get-to-start/"&gt;&lt;SPAN style="color: #4f4f4f;"&gt;PDF file that was created&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt; by ODS from within SAS®. However, this sample illustrates two methods that enable you to combine multiple tables in a PDF file using SAS. Hope it can help you &lt;SPAN style="color: #4f4f4f;"&gt;&lt;A href="http://www.rasteredge.com/how-to/vb-net-imaging/pdf-merge-split/"&gt;&lt;SPAN style="color: #4f4f4f;"&gt;combine multiple pdf files&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;view more at:&lt;A href="http://support.sas.com/kb/35/375.html" title="http://support.sas.com/kb/35/375.html"&gt;35375 - How to append to a PDF file created by ODS&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 06:23:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37954#M632</guid>
      <dc:creator>pittypan</dc:creator>
      <dc:date>2014-02-17T06:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Combine multiple PDFs into one in SAS</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37955#M633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know its a old post but here is my solution:&lt;/P&gt;&lt;P&gt;You can use VBA macros to refresh data and then format it. #simple&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also it depends what kind of format you need. A lot can achieved via Proc Report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Oct 2014 03:49:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Combine-multiple-PDFs-into-one-in-SAS/m-p/37955#M633</guid>
      <dc:creator>Dreamer</dc:creator>
      <dc:date>2014-10-02T03:49:02Z</dc:date>
    </item>
  </channel>
</rss>

