<?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: Remove observations with . in them in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595599#M171384</link>
    <description>&lt;P&gt;The last column has the "." in it. This is what I want to remove.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I put in this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data filtered;&lt;BR /&gt;set temp.hartland;&lt;BR /&gt;if not index(PERMNO ,'.');&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Transcept Pharmaceuticals Inc.&lt;/TD&gt;&lt;TD&gt;TSPT&lt;/TD&gt;&lt;TD&gt;Novacea Inc.&lt;/TD&gt;&lt;TD&gt;Marketwire&lt;/TD&gt;&lt;TD&gt;01SEP2008&lt;/TD&gt;&lt;TD&gt;H&lt;/TD&gt;&lt;TD&gt;2589&lt;/TD&gt;&lt;TD&gt;2008&lt;/TD&gt;&lt;TD&gt;2.6232908319&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
    <pubDate>Thu, 10 Oct 2019 23:47:21 GMT</pubDate>
    <dc:creator>anweinbe</dc:creator>
    <dc:date>2019-10-10T23:47:21Z</dc:date>
    <item>
      <title>Remove observations with . in them</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595590#M171378</link>
      <description>&lt;P&gt;Evening all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a data file called "hartland". There are 135 records, but I noticed that 33 of them have a "." in my PERMNO column. How do I remove these items and get my file down to 102 records?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 23:29:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595590#M171378</guid>
      <dc:creator>anweinbe</dc:creator>
      <dc:date>2019-10-10T23:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Remove observations with . in them</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595591#M171379</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;if not index(PERMNO&amp;nbsp;,'.');&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Oct 2019 23:34:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595591#M171379</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-10-10T23:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remove observations with . in them</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595594#M171380</link>
      <description>data temp.hartland;&lt;BR /&gt;if not index (permno , '.');&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;?</description>
      <pubDate>Thu, 10 Oct 2019 23:36:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595594#M171380</guid>
      <dc:creator>anweinbe</dc:creator>
      <dc:date>2019-10-10T23:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Remove observations with . in them</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595596#M171381</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data filtered;
set temp.hartland;
if not index(PERMNO ,'.');
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Oct 2019 23:38:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595596#M171381</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-10-10T23:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Remove observations with . in them</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595597#M171382</link>
      <description>Still showing 135 records and they are still there. Very odd.</description>
      <pubDate>Thu, 10 Oct 2019 23:42:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595597#M171382</guid>
      <dc:creator>anweinbe</dc:creator>
      <dc:date>2019-10-10T23:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Remove observations with . in them</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595598#M171383</link>
      <description>&lt;P&gt;Post your sample data plz&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 23:43:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595598#M171383</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-10-10T23:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Remove observations with . in them</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595599#M171384</link>
      <description>&lt;P&gt;The last column has the "." in it. This is what I want to remove.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I put in this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data filtered;&lt;BR /&gt;set temp.hartland;&lt;BR /&gt;if not index(PERMNO ,'.');&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Transcept Pharmaceuticals Inc.&lt;/TD&gt;&lt;TD&gt;TSPT&lt;/TD&gt;&lt;TD&gt;Novacea Inc.&lt;/TD&gt;&lt;TD&gt;Marketwire&lt;/TD&gt;&lt;TD&gt;01SEP2008&lt;/TD&gt;&lt;TD&gt;H&lt;/TD&gt;&lt;TD&gt;2589&lt;/TD&gt;&lt;TD&gt;2008&lt;/TD&gt;&lt;TD&gt;2.6232908319&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 10 Oct 2019 23:47:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595599#M171384</guid>
      <dc:creator>anweinbe</dc:creator>
      <dc:date>2019-10-10T23:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Remove observations with . in them</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595600#M171385</link>
      <description>It worked. I'm sorry Novinosrin! I looked at the wrong output file.</description>
      <pubDate>Thu, 10 Oct 2019 23:55:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Remove-observations-with-in-them/m-p/595600#M171385</guid>
      <dc:creator>anweinbe</dc:creator>
      <dc:date>2019-10-10T23:55:40Z</dc:date>
    </item>
  </channel>
</rss>

