<?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 select  range  of time in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/select-range-of-time/m-p/17371#M3290</link>
    <description>I have these fields in my table.The time_start runs from 01:00 thru 23:00 &lt;BR /&gt;
 ID&lt;BR /&gt;
 DATE START&lt;BR /&gt;
 TIME_START&lt;BR /&gt;
&lt;BR /&gt;
 I need to select a time range between 8:00 AM thru  17:00 only how do I exclude  the time that falls from this range?&lt;BR /&gt;
Thanks For Your Assistance</description>
    <pubDate>Fri, 25 Feb 2011 01:10:04 GMT</pubDate>
    <dc:creator>BETO</dc:creator>
    <dc:date>2011-02-25T01:10:04Z</dc:date>
    <item>
      <title>select  range  of time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/select-range-of-time/m-p/17371#M3290</link>
      <description>I have these fields in my table.The time_start runs from 01:00 thru 23:00 &lt;BR /&gt;
 ID&lt;BR /&gt;
 DATE START&lt;BR /&gt;
 TIME_START&lt;BR /&gt;
&lt;BR /&gt;
 I need to select a time range between 8:00 AM thru  17:00 only how do I exclude  the time that falls from this range?&lt;BR /&gt;
Thanks For Your Assistance</description>
      <pubDate>Fri, 25 Feb 2011 01:10:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/select-range-of-time/m-p/17371#M3290</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2011-02-25T01:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: select  range  of time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/select-range-of-time/m-p/17372#M3291</link>
      <description>Hi.&lt;BR /&gt;
How about :&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
data x;&lt;BR /&gt;
input time time5.;&lt;BR /&gt;
format time time5.;&lt;BR /&gt;
cards;&lt;BR /&gt;
08:09&lt;BR /&gt;
10:21&lt;BR /&gt;
12:00&lt;BR /&gt;
23:22&lt;BR /&gt;
;run;&lt;BR /&gt;
data _x;&lt;BR /&gt;
set x;&lt;BR /&gt;
 where time between '10:11't and '14:20't;&lt;BR /&gt;
run; &lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Fri, 25 Feb 2011 03:07:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/select-range-of-time/m-p/17372#M3291</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-02-25T03:07:26Z</dc:date>
    </item>
  </channel>
</rss>

