<?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: Convert INTCK time character to numeric? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579030#M164316</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;, you shouldn't assign a time format to a time interval value unless it is expressed in seconds.&lt;/P&gt;</description>
    <pubDate>Sun, 04 Aug 2019 18:54:17 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2019-08-04T18:54:17Z</dc:date>
    <item>
      <title>Convert INTCK time character to numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579023#M164311</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've searched up this a lot, but nothing worked for me. It's to my understanding that after I get the INTCK minute output, it's a character data type. So, I've tried converting the output by doing input(output, best.) and input(output, 5.) in the SAS data step as well as in proc sql but neither works.&lt;/P&gt;&lt;P&gt;Time is in the format of 24hr.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
	length query_text $300 time_diff $20;
	set temp;
	
	query_text = "blah blah";
	time_diff = intck('minute', input(time1, time.), input(time2, time.)); 
	*time_diff = input(temp, 8.); //this doesn't work
	keep query_text Subject time_diff;
run;


proc sql;

CREATE TABLE temp2 AS
SELECT query_text, Subject, time_diff /* I've tried input(time_diff, best.) and input(time_diff, 5.) but neither worked */
FROM want
WHERE time_diff &amp;gt; 15 /*Error: Expression using IN has components that are of different data types */
;
 
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Expected output:&lt;/P&gt;&lt;P&gt;╔════════════╦═════════╦═══════════╗&lt;BR /&gt;║ query_text&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║ Subject&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ║&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; time_diff&amp;nbsp; &amp;nbsp; &amp;nbsp; ║&lt;BR /&gt;╠════════════╬═════════╬═══════════╣&lt;BR /&gt;║ blah&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║ 001&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ║&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;16&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║&lt;BR /&gt;║ blah&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║ 002&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ║&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1500&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║&lt;BR /&gt;╚════════════╩═════════╩═══════════╝&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's kind of weird. If I have the WHERE statement be:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;CREATE TABLE temp2 AS
SELECT query_text, Subject, time_diff  
FROM want
WHERE time_diff &amp;gt; 15 or time_diff &amp;lt; -15
;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It would print out everything, including when time_diff is 15 (same print output as when print "want") and no errors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help/advice would be much appreciated, thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit (after accepting solution): Thanks to some of the replies, I realized that I am indeed assigning the time/number to a character variable. So, I just initialized the "query_text" variable in the data step as&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;length query_text 300&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Alright, thanks everyone!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 13:00:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579023#M164311</guid>
      <dc:creator>jerrylshen</dc:creator>
      <dc:date>2019-08-05T13:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Convert INTCK time character to numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579024#M164312</link>
      <description>&lt;P&gt;Do not overlook the log message&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;NOTE: Numeric values have been converted to character
      values at the places given by: (Line):(Column).
      13:17
&lt;/PRE&gt;
&lt;P&gt;it signals a problem with your code. INTCK returns numbers but you asked that it be assigned to a character variable. Hence the convertion mentionned in the log.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 17:43:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579024#M164312</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-08-04T17:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Convert INTCK time character to numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579025#M164313</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt; It's to my understanding that after I get the INTCK minute output, it's a character data type.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;That's incorrect, INTCK returns a number. &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;There are several points where you could have an error but I would start by double checking what the time and formats are for time1, time2 before you start. Once you can&amp;nbsp;provide that, someone can provide the correct code. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Right now you're&amp;nbsp;converting it to a number, so assuming it starts out as a character that looks like (08:24). If not, your INPUT is wrong.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here's an example of how this would work if you had times. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
time_start = '5:45't;
time_end = '12:55't;
*calculate difference in minutes;
time_diff = intck('minutes', time_start, time_end);
*create another identical variable to show format;
time_formatted = time_diff;
format time_start time_end time_formatted time.;
run;

proc print data=have;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;If time were character variables, it may look like this:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
    time_start='5:45';
    time_end='12:55';
    *calculate difference in minutes;
    time_diff=intck('minutes', input(time_start, time.), input(time_end, time.));
    *create another identical variable to show format;
    time_formatted=time_diff*60;
    format  time_formatted time.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Results:&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE class="table" aria-label="Data Set WORK.HAVE"&gt;&lt;CAPTION aria-label="Data Set WORK.HAVE"&gt;&amp;nbsp;&lt;/CAPTION&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r header" scope="col"&gt;Obs&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;time_start&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;time_end&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;time_diff&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;time_formatted&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="r data"&gt;5:45:00&lt;/TD&gt;
&lt;TD class="r data"&gt;12:55:00&lt;/TD&gt;
&lt;TD class="r data"&gt;430&lt;/TD&gt;
&lt;TD class="r data"&gt;0:07:10&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the future including your log is also very helpful. It would contain any notes about types changing that would help indicate where the problem actually is.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: edited to correct formatted time formats.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/277351"&gt;@jerrylshen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've searched up this a lot, but nothing worked for me. It's to my understanding that after I get the INTCK minute output, it's a character data type. So, I've tried converting the output by doing input(output, best.) and input(output, 5.) in the SAS data step as well as in proc sql but neither works.&lt;/P&gt;
&lt;P&gt;Time is in the format of 24hr.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
	length query_text $300 time_diff $20;
	set temp;
	
	query_text = "blah blah";
	time_diff = intck('minute', input(time1, time.), input(time2, time.)); 
	*time_diff = input(temp, 8.); //this doesn't work
	keep query_text Subject time_diff;
run;


proc sql;

CREATE TABLE temp2 AS
SELECT query_text, Subject, time_diff /* I've tried input(time_diff, best.) and input(time_diff, 5.) but neither worked */
FROM want
WHERE time_diff &amp;gt; 15 /*Error: Expression using IN has components that are of different data types */
;
 
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Expected output:&lt;/P&gt;
&lt;P&gt;╔════════════╦═════════╦═══════════╗&lt;BR /&gt;║ query_text&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║ Subject&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ║&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; time_diff&amp;nbsp; &amp;nbsp; &amp;nbsp; ║&lt;BR /&gt;╠════════════╬═════════╬═══════════╣&lt;BR /&gt;║ blah&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║ 001&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ║&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;16&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║&lt;BR /&gt;║ blah&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║ 002&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ║&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1500&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;║&lt;BR /&gt;╚════════════╩═════════╩═══════════╝&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's kind of weird. If I have the WHERE statement be:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;CREATE TABLE temp2 AS
SELECT query_text, Subject, time_diff  
FROM want
WHERE time_diff &amp;gt; 15 or time_diff &amp;lt; -15
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It would print out everything, including when time_diff is 15 (same print output as when print "want") and no errors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help/advice would be much appreciated, thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 21:45:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579025#M164313</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-04T21:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Convert INTCK time character to numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579027#M164314</link>
      <description>Hi, I thought INTCK only takes in variables in the data type of&lt;BR /&gt;Date/Time/DateTime?&lt;BR /&gt;</description>
      <pubDate>Sun, 04 Aug 2019 17:49:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579027#M164314</guid>
      <dc:creator>jerrylshen</dc:creator>
      <dc:date>2019-08-04T17:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Convert INTCK time character to numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579029#M164315</link>
      <description>&lt;P&gt;The input variables required for INTCK are date time, time or date.&lt;/P&gt;
&lt;P&gt;Datetime, time or date variables are just numeric values, with a format to show them as dates. Datetimes are the number of seconds from January 1, 1960, Date variables are the number of days from January 1, 1960 and Times are just seconds.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assuming you're referring to my second example, the INPUT() function within the INTCK() function converts the times to time variables. This is similar to what you were doing in your code.&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/277351"&gt;@jerrylshen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Hi, I thought INTCK only takes in variables in the data type of&lt;BR /&gt;Date/Time/DateTime?&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 17:52:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579029#M164315</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-04T17:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: Convert INTCK time character to numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579030#M164316</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;, you shouldn't assign a time format to a time interval value unless it is expressed in seconds.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 18:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579030#M164316</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-08-04T18:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Convert INTCK time character to numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579032#M164317</link>
      <description>&lt;P&gt;The output of INTCK() is a number.&amp;nbsp; The number of intervals crossed.&amp;nbsp; In your case since you are using MINUTE as the interval it is a count of the number of minutes.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Why are you assigning that to a character variable?&amp;nbsp; When you do that SAS will format the number using the BEST12. format. So if the numbers of minutes was 15 then the character variable will have the ten spaces the digit 1 and then the digit 5.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 19:55:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579032#M164317</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-08-04T19:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Convert INTCK time character to numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579037#M164321</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;, you shouldn't assign a time format to a time interval value unless it is expressed in seconds.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Correct, hard to see that error since it just shifts the locations....the formats on the character variable are also incorrect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;07:10:00
00:07:10&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 04 Aug 2019 21:47:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579037#M164321</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-04T21:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: Convert INTCK time character to numeric?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579039#M164323</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/277351"&gt;@jerrylshen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt; I thought INTCK only takes in variables in the data type of&amp;nbsp;Date/Time/DateTime?&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You seem confused about SAS data types.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS only has 2 types: numeric (floating) and character (char).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dates etc are simply numeric variables displayed using the appropriate format.&lt;/P&gt;
&lt;P&gt;You can display any number with any format, and use any numeric function on any numeric data.&lt;/P&gt;
&lt;P&gt;The use of the correct format and function is up to the user/programmer/DWH administrator.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 22:01:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-INTCK-time-character-to-numeric/m-p/579039#M164323</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-08-04T22:01:28Z</dc:date>
    </item>
  </channel>
</rss>

