<?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 How do I delete missing data when reading in data from SPSS? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-delete-missing-data-when-reading-in-data-from-SPSS/m-p/251581#M56718</link>
    <description>&lt;P&gt;How do I delete missing data when I read in data from SPSS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my syntax now:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc import&lt;BR /&gt;datafile="S:\DEWL.sav"&lt;BR /&gt;DBMS=sav&lt;BR /&gt;out=d&lt;BR /&gt;replace;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to tell SAS to delete any observations that have missing data for 30 variables. I am using SAS 9.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 22 Feb 2016 17:27:38 GMT</pubDate>
    <dc:creator>klharpe2</dc:creator>
    <dc:date>2016-02-22T17:27:38Z</dc:date>
    <item>
      <title>How do I delete missing data when reading in data from SPSS?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-delete-missing-data-when-reading-in-data-from-SPSS/m-p/251581#M56718</link>
      <description>&lt;P&gt;How do I delete missing data when I read in data from SPSS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my syntax now:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc import&lt;BR /&gt;datafile="S:\DEWL.sav"&lt;BR /&gt;DBMS=sav&lt;BR /&gt;out=d&lt;BR /&gt;replace;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to tell SAS to delete any observations that have missing data for 30 variables. I am using SAS 9.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 17:27:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-delete-missing-data-when-reading-in-data-from-SPSS/m-p/251581#M56718</guid>
      <dc:creator>klharpe2</dc:creator>
      <dc:date>2016-02-22T17:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I delete missing data when reading in data from SPSS?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-delete-missing-data-when-reading-in-data-from-SPSS/m-p/251582#M56719</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
 set d;
 if cmiss(of _all_) then delete;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Feb 2016 17:33:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-delete-missing-data-when-reading-in-data-from-SPSS/m-p/251582#M56719</guid>
      <dc:creator>mohamed_zaki</dc:creator>
      <dc:date>2016-02-22T17:33:44Z</dc:date>
    </item>
  </channel>
</rss>

