<?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 Filling the empty cell while merging in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534149#M146503</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0001.jpg" style="width: 444px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27023i08A0A826ECAB7C7A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0001.jpg" alt="0001.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want is to fill the highlighted cell while merging with respective number in the cell. For example for the 1st row market_return will be 0.2487176983 and for the 1st 12 row adjusted_return will be 0.7965715684.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 09 Feb 2019 18:13:23 GMT</pubDate>
    <dc:creator>abdulla</dc:creator>
    <dc:date>2019-02-09T18:13:23Z</dc:date>
    <item>
      <title>Filling the empty cell while merging</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534149#M146503</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0001.jpg" style="width: 444px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27023i08A0A826ECAB7C7A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0001.jpg" alt="0001.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want is to fill the highlighted cell while merging with respective number in the cell. For example for the 1st row market_return will be 0.2487176983 and for the 1st 12 row adjusted_return will be 0.7965715684.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Feb 2019 18:13:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534149#M146503</guid>
      <dc:creator>abdulla</dc:creator>
      <dc:date>2019-02-09T18:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Filling the empty cell while merging</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534154#M146505</link>
      <description>&lt;P&gt;&lt;A href="https://communities.sas.com/t5/help/faqpage/faq-category-id/posting#posting" target="_blank"&gt;https://communities.sas.com/t5/help/faqpage/faq-category-id/posting#posting&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;please post you haves and want into a form that others could reply to please.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Feb 2019 17:17:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534154#M146505</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-02-09T17:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Filling the empty cell while merging</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534157#M146508</link>
      <description>Sorry, but I won't open any office documents poster in the internet. If you want help, post explain your problem including usable test-data and what you expect as result using {i} window.</description>
      <pubDate>Sat, 09 Feb 2019 17:48:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534157#M146508</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-02-09T17:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Filling the empty cell while merging</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534165#M146513</link>
      <description>I changed it</description>
      <pubDate>Sat, 09 Feb 2019 18:14:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534165#M146513</guid>
      <dc:creator>abdulla</dc:creator>
      <dc:date>2019-02-09T18:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Filling the empty cell while merging</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534204#M146539</link>
      <description>&lt;P&gt;So, all you need is to merge with newA instead of A&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table newA as
select 
    permno, 
    max(adjusted_return) as adjusted_return,
    max(market_return) as market_return
from A
group by permno;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 Feb 2019 23:39:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534204#M146539</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-02-09T23:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Filling the empty cell while merging</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534233#M146561</link>
      <description>&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&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/260675"&gt;@abdulla&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0001.jpg" style="width: 444px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27023i08A0A826ECAB7C7A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0001.jpg" alt="0001.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I want is to fill the highlighted cell while merging with respective number in the cell. For example for the 1st row market_return will be 0.2487176983 and for the 1st 12 row adjusted_return will be 0.7965715684.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 00:58:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Filling-the-empty-cell-while-merging/m-p/534233#M146561</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-10T00:58:01Z</dc:date>
    </item>
  </channel>
</rss>

