<?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 Time data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Time-data/m-p/565774#M158901</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to ask about time data.&lt;/P&gt;
&lt;P&gt;I have raw data with&amp;nbsp; Hours:Minutes,Seconds .&lt;/P&gt;
&lt;P&gt;For example&amp;nbsp;&amp;nbsp;00:15:00&amp;nbsp; (means 0 hours 15 minutes 0 seconds)&lt;/P&gt;
&lt;P&gt;For example&amp;nbsp; 12:00:00 (means 12 hours ,0 minutes,0 seconds)&lt;/P&gt;
&lt;P&gt;For example&amp;nbsp; 01:02:00(means 1 hour 2 minutes 0 seconds)&lt;/P&gt;
&lt;P&gt;The task-I want to retrieve all observations with more then 30 minutes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA a;
  input  wt_time time8.;
  DATALINES;
00:01:00
00:31:00
12:00:00
00:00:00
01:02:00
  ;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;,&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jun 2019 08:51:46 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2019-06-13T08:51:46Z</dc:date>
    <item>
      <title>Time data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Time-data/m-p/565774#M158901</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to ask about time data.&lt;/P&gt;
&lt;P&gt;I have raw data with&amp;nbsp; Hours:Minutes,Seconds .&lt;/P&gt;
&lt;P&gt;For example&amp;nbsp;&amp;nbsp;00:15:00&amp;nbsp; (means 0 hours 15 minutes 0 seconds)&lt;/P&gt;
&lt;P&gt;For example&amp;nbsp; 12:00:00 (means 12 hours ,0 minutes,0 seconds)&lt;/P&gt;
&lt;P&gt;For example&amp;nbsp; 01:02:00(means 1 hour 2 minutes 0 seconds)&lt;/P&gt;
&lt;P&gt;The task-I want to retrieve all observations with more then 30 minutes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA a;
  input  wt_time time8.;
  DATALINES;
00:01:00
00:31:00
12:00:00
00:00:00
01:02:00
  ;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 08:51:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Time-data/m-p/565774#M158901</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-06-13T08:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Time data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Time-data/m-p/565776#M158902</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA a;
  input  wt_time time8.;
  format wt_time time8.;
  DATALINES;
00:01:00
00:31:00
12:00:00
00:00:00
01:02:00
  ;
RUN;

data b;
    set a;
    where wt_time ge '00:30:00't;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jun 2019 08:54:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Time-data/m-p/565776#M158902</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-06-13T08:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Time data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Time-data/m-p/565781#M158904</link>
      <description>&lt;P&gt;If you need to extract the minutes from a time value, There Is a Function for It (Maxim 9).&lt;/P&gt;
&lt;P&gt;Go to&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=pgmsashome&amp;amp;docsetTarget=home.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;SAS® 9.4 and SAS® Viya® 3.4 Programming Documentation&lt;/A&gt;, navigate to Data Step Programming / Functions and Call Routines /&amp;nbsp;Functions and Call Routines / Dictionary of&amp;nbsp;Functions and Call Routines and see if you find something with minutes &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:07:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Time-data/m-p/565781#M158904</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-06-13T09:07:55Z</dc:date>
    </item>
  </channel>
</rss>

