<?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: how to get non matching observations from one data set only in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392531#M94480</link>
    <description>if not ina ?</description>
    <pubDate>Fri, 01 Sep 2017 13:25:07 GMT</pubDate>
    <dc:creator>gamotte</dc:creator>
    <dc:date>2017-09-01T13:25:07Z</dc:date>
    <item>
      <title>how to get non matching observations from one data set only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392528#M94477</link>
      <description>&lt;P&gt;Hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Building off of this post:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Procedures/how-to-get-non-matching-observations/m-p/97985#M27616" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/how-to-get-non-matching-observations/m-p/97985#M27616&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using this code:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Match Nomatch;
     merge a (in=ina) b (in=inb);
     by no;
     if ina and inb then output match;
     else output Nomatch;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I would like to output a data set that includes observations that did not match dataset "a" only. Any suggestions on where to start? &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2017 13:21:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392528#M94477</guid>
      <dc:creator>hwangnyc</dc:creator>
      <dc:date>2017-09-01T13:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to get non matching observations from one data set only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392531#M94480</link>
      <description>if not ina ?</description>
      <pubDate>Fri, 01 Sep 2017 13:25:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392531#M94480</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2017-09-01T13:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to get non matching observations from one data set only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392533#M94481</link>
      <description>How would you code that?</description>
      <pubDate>Fri, 01 Sep 2017 13:42:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392533#M94481</guid>
      <dc:creator>hwangnyc</dc:creator>
      <dc:date>2017-09-01T13:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to get non matching observations from one data set only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392536#M94483</link>
      <description>&lt;PRE&gt;data Match Noamatch Nobmatch;
     merge a (in=ina) b (in=inb);
     by no;
     if ina and inb then output match;
	 else if not ina then output Noamatch;
	 else output Nobmatch;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Sep 2017 13:50:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392536#M94483</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2017-09-01T13:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to get non matching observations from one data set only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392543#M94484</link>
      <description>Thank you!</description>
      <pubDate>Fri, 01 Sep 2017 14:10:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-non-matching-observations-from-one-data-set-only/m-p/392543#M94484</guid>
      <dc:creator>hwangnyc</dc:creator>
      <dc:date>2017-09-01T14:10:21Z</dc:date>
    </item>
  </channel>
</rss>

