<?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: merging multiple rows into 1 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/merging-multiple-rows-into-1/m-p/393209#M277810</link>
    <description>&lt;P&gt;I figured out a way. Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 05 Sep 2017 13:31:50 GMT</pubDate>
    <dc:creator>purveshrana</dc:creator>
    <dc:date>2017-09-05T13:31:50Z</dc:date>
    <item>
      <title>merging multiple rows into 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/merging-multiple-rows-into-1/m-p/393199#M277808</link>
      <description>&lt;P&gt;I have a dataset&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;columns: &amp;nbsp; &amp;nbsp;A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;B &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;C &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; D&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; APPLE &amp;nbsp; &amp;nbsp; &amp;nbsp;BALL &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;123 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;APPLE &amp;nbsp; &amp;nbsp; &amp;nbsp; BALL &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; . &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 123&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I WANT AN OUTPUT TO BE LIKE FOLLOWING&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; B &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; C &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;D&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; APPLE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BALL &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 123 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 123&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I solve this in single step ? Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2017 13:16:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/merging-multiple-rows-into-1/m-p/393199#M277808</guid>
      <dc:creator>purveshrana</dc:creator>
      <dc:date>2017-09-05T13:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: merging multiple rows into 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/merging-multiple-rows-into-1/m-p/393207#M277809</link>
      <description>&lt;P&gt;If it takes just column A to determine a unique observation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;update have (obs=0) have;&lt;/P&gt;
&lt;P&gt;by a;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it takes the combination of both columns A and B, switch to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;update have (obs=0) have;&lt;/P&gt;
&lt;P&gt;by a b;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In any case, the data need to be in sorted order to be allowed to use the BY statement.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2017 13:29:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/merging-multiple-rows-into-1/m-p/393207#M277809</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-09-05T13:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: merging multiple rows into 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/merging-multiple-rows-into-1/m-p/393209#M277810</link>
      <description>&lt;P&gt;I figured out a way. Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2017 13:31:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/merging-multiple-rows-into-1/m-p/393209#M277810</guid>
      <dc:creator>purveshrana</dc:creator>
      <dc:date>2017-09-05T13:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: merging multiple rows into 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/merging-multiple-rows-into-1/m-p/393313#M277811</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/108000"&gt;@purveshrana&lt;/a&gt;&amp;nbsp;for completion, please post the solution or mark one here as correct.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2017 17:15:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/merging-multiple-rows-into-1/m-p/393313#M277811</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-09-05T17:15:03Z</dc:date>
    </item>
  </channel>
</rss>

