<?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: Deleting Missing Observations in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Deleting-Missing-Observations/m-p/587236#M14651</link>
    <description>&lt;P&gt;So you simply want to delete observations whare the variable&amp;nbsp;ev_count is missing?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input ev_count;
datalines;
1
.
2
.
;

data want;
    set have;
    if not missing(ev_count);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 09 Sep 2019 13:48:52 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2019-09-09T13:48:52Z</dc:date>
    <item>
      <title>Deleting Missing Observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Deleting-Missing-Observations/m-p/587233#M14648</link>
      <description>&lt;P&gt;I am looking for an impressive way to delete the missing observations in my variable ev_count. I know I could just list the options 0,1,2,3 and = them to themselves and then put other delete. But I have to submit my code with my project and cannot find a better more time efficient way to just delete the whole row when ev_Count is missing.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2019 13:43:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Deleting-Missing-Observations/m-p/587233#M14648</guid>
      <dc:creator>karaheller20</dc:creator>
      <dc:date>2019-09-09T13:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Missing Observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Deleting-Missing-Observations/m-p/587234#M14649</link>
      <description>&lt;P&gt;Are you meaning&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if missing(ev_count) then delete;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Sep 2019 13:46:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Deleting-Missing-Observations/m-p/587234#M14649</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-09-09T13:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Missing Observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Deleting-Missing-Observations/m-p/587235#M14650</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
   set have;
   if missing(ev_count) then delete;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Sep 2019 13:47:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Deleting-Missing-Observations/m-p/587235#M14650</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-09T13:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Missing Observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Deleting-Missing-Observations/m-p/587236#M14651</link>
      <description>&lt;P&gt;So you simply want to delete observations whare the variable&amp;nbsp;ev_count is missing?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input ev_count;
datalines;
1
.
2
.
;

data want;
    set have;
    if not missing(ev_count);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Sep 2019 13:48:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Deleting-Missing-Observations/m-p/587236#M14651</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-09-09T13:48:52Z</dc:date>
    </item>
  </channel>
</rss>

