<?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: Append data sets together in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611595#M178274</link>
    <description>&lt;P&gt;What code are you using?&lt;/P&gt;</description>
    <pubDate>Fri, 13 Dec 2019 15:12:31 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2019-12-13T15:12:31Z</dc:date>
    <item>
      <title>Append data sets together</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611592#M178271</link>
      <description>&lt;P&gt;Good morning.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have 4 separate quarterly files with the same 10 columns in each.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;work.Qtr1_Sales&lt;/P&gt;
&lt;P&gt;work.Qtr2_Sales&lt;/P&gt;
&lt;P&gt;work.Qtr3_Sales&lt;/P&gt;
&lt;P&gt;work.Qtr4_Sales.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to create one file that has all of the data showing Qtr2 data below Qtr1. Qtr3 data below Qtr2 etc.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 15:03:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611592#M178271</guid>
      <dc:creator>anweinbe</dc:creator>
      <dc:date>2019-12-13T15:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Append data sets together</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611593#M178272</link>
      <description>&lt;P&gt;Use PROC APPEND&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p1bjrbc5esr90on12o8vs7gyv8ue.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p1bjrbc5esr90on12o8vs7gyv8ue.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 15:05:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611593#M178272</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-13T15:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Append data sets together</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611594#M178273</link>
      <description>&lt;P&gt;Paige,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pardon my ignorance but I'm having trouble making the code work using the Append. I must be missing something simple.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 15:09:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611594#M178273</guid>
      <dc:creator>anweinbe</dc:creator>
      <dc:date>2019-12-13T15:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Append data sets together</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611595#M178274</link>
      <description>&lt;P&gt;What code are you using?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 15:12:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611595#M178274</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-13T15:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: Append data sets together</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611596#M178275</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set qtr1_sales qtr2_sales qtr3_sales qtr4_sales;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Dec 2019 15:19:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611596#M178275</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2019-12-13T15:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Append data sets together</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611598#M178276</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/30622"&gt;@gamotte&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set qtr1_sales qtr2_sales qtr3_sales qtr4_sales;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The reason I recommend PROC APPEND is that it is much faster than use the SET statement; this can make a difference if these are huge data sets.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 15:22:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611598#M178276</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-13T15:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Append data sets together</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611624#M178288</link>
      <description>Good point, I overlooked this difference in performance. The drawback i saw with proc append is the necessity to use as many proc appends as there are datasets to append. A macro can be used though.</description>
      <pubDate>Fri, 13 Dec 2019 16:00:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Append-data-sets-together/m-p/611624#M178288</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2019-12-13T16:00:48Z</dc:date>
    </item>
  </channel>
</rss>

