<?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 find out grandson in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/find-out-grandson/m-p/742839#M232447</link>
    <description>&lt;P&gt;data have;&lt;BR /&gt;input father $ son $;&lt;BR /&gt;cards;&lt;BR /&gt;a&amp;nbsp; b&lt;/P&gt;
&lt;P&gt;b&amp;nbsp; c&lt;/P&gt;
&lt;P&gt;c&amp;nbsp; d&lt;/P&gt;
&lt;P&gt;d&amp;nbsp; e&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;BR /&gt;input grandfather$&amp;nbsp; father $ son $;&lt;BR /&gt;cards;&lt;BR /&gt;a&amp;nbsp; b&amp;nbsp; &amp;nbsp;c&lt;/P&gt;
&lt;P&gt;b&amp;nbsp; c&amp;nbsp; &amp;nbsp;d&lt;/P&gt;
&lt;P&gt;c&amp;nbsp; d&amp;nbsp; &amp;nbsp;e;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Fri, 21 May 2021 07:36:32 GMT</pubDate>
    <dc:creator>aanan1417</dc:creator>
    <dc:date>2021-05-21T07:36:32Z</dc:date>
    <item>
      <title>find out grandson</title>
      <link>https://communities.sas.com/t5/SAS-Programming/find-out-grandson/m-p/742839#M232447</link>
      <description>&lt;P&gt;data have;&lt;BR /&gt;input father $ son $;&lt;BR /&gt;cards;&lt;BR /&gt;a&amp;nbsp; b&lt;/P&gt;
&lt;P&gt;b&amp;nbsp; c&lt;/P&gt;
&lt;P&gt;c&amp;nbsp; d&lt;/P&gt;
&lt;P&gt;d&amp;nbsp; e&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;BR /&gt;input grandfather$&amp;nbsp; father $ son $;&lt;BR /&gt;cards;&lt;BR /&gt;a&amp;nbsp; b&amp;nbsp; &amp;nbsp;c&lt;/P&gt;
&lt;P&gt;b&amp;nbsp; c&amp;nbsp; &amp;nbsp;d&lt;/P&gt;
&lt;P&gt;c&amp;nbsp; d&amp;nbsp; &amp;nbsp;e;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 07:36:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/find-out-grandson/m-p/742839#M232447</guid>
      <dc:creator>aanan1417</dc:creator>
      <dc:date>2021-05-21T07:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: find out grandson</title>
      <link>https://communities.sas.com/t5/SAS-Programming/find-out-grandson/m-p/742843#M232451</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/378510"&gt;@aanan1417&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table want as
select a.father as grandfather, a.son as father, b.son
from have a, have b
where a.son=b.father
order by 1, 2, 3;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 May 2021 08:18:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/find-out-grandson/m-p/742843#M232451</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-05-21T08:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: find out grandson</title>
      <link>https://communities.sas.com/t5/SAS-Programming/find-out-grandson/m-p/742856#M232457</link>
      <description>&lt;P&gt;There was a similar thread not long ago. You may find suitable code there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/How-to-find-great-grand-parents-in-the-dataset/m-p/726480" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/How-to-find-great-grand-parents-in-the-dataset/m-p/726480&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 09:20:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/find-out-grandson/m-p/742856#M232457</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-05-21T09:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: find out grandson</title>
      <link>https://communities.sas.com/t5/SAS-Programming/find-out-grandson/m-p/742859#M232460</link>
      <description>&lt;P&gt;thanks a ton&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 09:24:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/find-out-grandson/m-p/742859#M232460</guid>
      <dc:creator>aanan1417</dc:creator>
      <dc:date>2021-05-21T09:24:04Z</dc:date>
    </item>
  </channel>
</rss>

