<?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 Dropping observations by ID and variable range in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56731#M15876</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way would be to use proc sql. You would have to test it, of course, but I think that the following meets your requirements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; group by id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; having sum(missing(price)) eq 0 and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; time between -5 and 10&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Feb 2012 23:09:55 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2012-02-16T23:09:55Z</dc:date>
    <item>
      <title>Dropping observations by ID and variable range</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56727#M15872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First time poster (very new to SAS).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm running an event study and I have a large dataset. I'm trying to include only those company's (ID) that have data from -5 &amp;lt;= time &amp;lt;= 10... but I noticed that there many companies in the dataset that have missing data in the time range. For example, in the tables below, company ID 001 satisfies the requirement while company ID 150 has missing data in the time range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How am I able to scrap the companies in the dataset with missing data in -5 &amp;lt;= time &amp;lt;= 10 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks kindly! My apologies if this question is trivial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" height="700" style="width: 193px;"&gt;&lt;TBODY&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;ID&lt;/TD&gt;&lt;TD style="width: 48pt;" width="64"&gt;time&lt;/TD&gt;&lt;TD style="width: 48pt;" width="64"&gt;price&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;-5&lt;/TD&gt;&lt;TD align="right"&gt;6.5&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;-4&lt;/TD&gt;&lt;TD align="right"&gt;6.9&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;-3&lt;/TD&gt;&lt;TD align="right"&gt;7.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;-2&lt;/TD&gt;&lt;TD align="right"&gt;7.23&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;-1&lt;/TD&gt;&lt;TD align="right"&gt;7.12&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;0&lt;/TD&gt;&lt;TD align="right"&gt;8.02&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;1&lt;/TD&gt;&lt;TD align="right"&gt;8.55&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;2&lt;/TD&gt;&lt;TD align="right"&gt;8.49&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;3&lt;/TD&gt;&lt;TD align="right"&gt;8.52&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;4&lt;/TD&gt;&lt;TD align="right"&gt;8.69&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;5&lt;/TD&gt;&lt;TD align="right"&gt;8.75&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;6&lt;/TD&gt;&lt;TD align="right"&gt;8.65&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;7&lt;/TD&gt;&lt;TD align="right"&gt;8.6&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;8&lt;/TD&gt;&lt;TD align="right"&gt;8.66&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;9&lt;/TD&gt;&lt;TD align="right"&gt;8.7&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;001&lt;/TD&gt;&lt;TD align="right"&gt;10&lt;/TD&gt;&lt;TD align="right"&gt;8.72&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;&lt;BR /&gt;&lt;/TD&gt;&lt;TD&gt;&lt;BR /&gt;&lt;/TD&gt;&lt;TD&gt;&lt;BR /&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;ID&lt;/TD&gt;&lt;TD&gt;time&lt;/TD&gt;&lt;TD&gt;price&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;-5&lt;/TD&gt;&lt;TD class="xl63"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;-4&lt;/TD&gt;&lt;TD class="xl63"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;-3&lt;/TD&gt;&lt;TD class="xl63"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;-2&lt;/TD&gt;&lt;TD class="xl63"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;-1&lt;/TD&gt;&lt;TD class="xl63"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;0&lt;/TD&gt;&lt;TD align="right"&gt;22.5&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;1&lt;/TD&gt;&lt;TD align="right"&gt;26.88&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;2&lt;/TD&gt;&lt;TD align="right"&gt;27.16&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;3&lt;/TD&gt;&lt;TD align="right"&gt;27.05&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;4&lt;/TD&gt;&lt;TD align="right"&gt;27.22&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;5&lt;/TD&gt;&lt;TD align="right"&gt;29&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;6&lt;/TD&gt;&lt;TD align="right"&gt;28.64&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;7&lt;/TD&gt;&lt;TD align="right"&gt;28.12&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;8&lt;/TD&gt;&lt;TD align="right"&gt;28.01&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;9&lt;/TD&gt;&lt;TD align="right"&gt;28.29&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 15.0pt;"&gt;&lt;TD height="20" style="height: 15.0pt;"&gt;150&lt;/TD&gt;&lt;TD align="right"&gt;10&lt;/TD&gt;&lt;TD align="right"&gt;28.55&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 22:49:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56727#M15872</guid>
      <dc:creator>randyl</dc:creator>
      <dc:date>2012-02-16T22:49:16Z</dc:date>
    </item>
    <item>
      <title>Dropping observations by ID and variable range</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56728#M15873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you just want to get rid of records that have missing price data, or entire companies if they have any missing data that happens to be in your designated range?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 22:54:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56728#M15873</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T22:54:24Z</dc:date>
    </item>
    <item>
      <title>Dropping observations by ID and variable range</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56729#M15874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Art,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to get rid of all the companies that have missing price data in the designated range. In the tables above, I would like to drop Company ID 150 from the dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Randy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 23:00:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56729#M15874</guid>
      <dc:creator>randyl</dc:creator>
      <dc:date>2012-02-16T23:00:15Z</dc:date>
    </item>
    <item>
      <title>Dropping observations by ID and variable range</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56730#M15875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simplest is to merge it back with itself.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; merge have (in=in1 where=(price=.) keep=id price) have ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by id ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if in1 then delete;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works when the records with missing values for price are actually in the dataset.&amp;nbsp; If you had cases where the records for the missing prices are just not in the dataset then it will not work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 23:09:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56730#M15875</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-02-16T23:09:54Z</dc:date>
    </item>
    <item>
      <title>Dropping observations by ID and variable range</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56731#M15876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way would be to use proc sql. You would have to test it, of course, but I think that the following meets your requirements:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; group by id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; having sum(missing(price)) eq 0 and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; time between -5 and 10&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 23:09:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56731#M15876</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-16T23:09:55Z</dc:date>
    </item>
    <item>
      <title>Dropping observations by ID and variable range</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56732#M15877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or a 2x DWL if presorted by ID,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want (drop=flag);&lt;/P&gt;&lt;P&gt;&amp;nbsp; do until (last.id);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by id;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if -5&amp;lt;=time&amp;lt;=10;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if missing(price) then flag=1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; do until (last.id);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by id;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if -5&amp;lt;=time&amp;lt;=10;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if&amp;nbsp; flag ne 1 then output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 23:56:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56732#M15877</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-02-16T23:56:27Z</dc:date>
    </item>
    <item>
      <title>Dropping observations by ID and variable range</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56733#M15878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Haikuo, I'd send this to you, personally, but I don't know your email address.&amp;nbsp; If you want to share it you can write me at atabachneck at gmail dot com.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just so we don't start introducing even more acronymns, I think the one you are suggesting is called a double DOW loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The term was coined on SAS-L, and in some SUGI/SGF papers, but I think it primarily refers to two of its principal inventors, namely Ian Whitlock and Paul Dorfman.&amp;nbsp; One of the discussion forum's own members, Howles (who also happens to be a SAS-L Hall of Fame member along with Ian and Paul), also played a significant role, but I don't believe that his name was ever incorporated into the acronym.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 00:06:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56733#M15878</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-02-17T00:06:34Z</dc:date>
    </item>
    <item>
      <title>Dropping observations by ID and variable range</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56734#M15879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for correcting me. I guess I&amp;nbsp; took it for granted that the "Do While Loop" for DWL, and "Do Until Loop" as DUL. Apparently it is all wrong. And I have no intention what so ever of disrespecting or discrediting Ian ,Paul and Howles.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am actually glad you did it in public so my error will not spread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate you left your email, which I will surely use to bug you in the future.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case Ian, Paul or Howles&amp;nbsp; come cross this post, Please accept my sincere apology. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 02:13:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56734#M15879</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-02-17T02:13:18Z</dc:date>
    </item>
    <item>
      <title>Dropping observations by ID and variable range</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56735#M15880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom. &lt;/P&gt;&lt;P&gt;If OP's data has some time less than -5 or greater than 10, your code can't work , because OP want data between -5 and 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 07:11:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Dropping-observations-by-ID-and-variable-range/m-p/56735#M15880</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-02-17T07:11:41Z</dc:date>
    </item>
  </channel>
</rss>

