<?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 date format in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/465761#M70570</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hello&amp;nbsp; guys,&lt;/P&gt;
&lt;P&gt;I have 2 tables that I need to match on date field but the format in both tables is a&amp;nbsp; bit different&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1st table :&amp;nbsp;&amp;nbsp; 2018-04-06 11:59:55&lt;/P&gt;
&lt;P&gt;2nd table:&amp;nbsp;&amp;nbsp; 2018-4-6 11:59:55:377&lt;/P&gt;
&lt;P&gt;This field is a string&amp;nbsp; in both tables&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How&amp;nbsp; can I&amp;nbsp; convert 2018-4-6 11:59:55:377&amp;nbsp;&amp;nbsp; to 2018-04-06 11:59:55. any ideas please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thx&lt;/P&gt;</description>
    <pubDate>Tue, 29 May 2018 17:13:37 GMT</pubDate>
    <dc:creator>Tal</dc:creator>
    <dc:date>2018-05-29T17:13:37Z</dc:date>
    <item>
      <title>date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/465761#M70570</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hello&amp;nbsp; guys,&lt;/P&gt;
&lt;P&gt;I have 2 tables that I need to match on date field but the format in both tables is a&amp;nbsp; bit different&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1st table :&amp;nbsp;&amp;nbsp; 2018-04-06 11:59:55&lt;/P&gt;
&lt;P&gt;2nd table:&amp;nbsp;&amp;nbsp; 2018-4-6 11:59:55:377&lt;/P&gt;
&lt;P&gt;This field is a string&amp;nbsp; in both tables&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How&amp;nbsp; can I&amp;nbsp; convert 2018-4-6 11:59:55:377&amp;nbsp;&amp;nbsp; to 2018-04-06 11:59:55. any ideas please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thx&lt;/P&gt;</description>
      <pubDate>Tue, 29 May 2018 17:13:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/465761#M70570</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2018-05-29T17:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/465808#M70583</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/34400"&gt;@Tal&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hello&amp;nbsp; guys,&lt;/P&gt;
&lt;P&gt;I have 2 tables that I need to match on date field but the format in both tables is a&amp;nbsp; bit different&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1st table :&amp;nbsp;&amp;nbsp; 2018-04-06 11:59:55&lt;/P&gt;
&lt;P&gt;2nd table:&amp;nbsp;&amp;nbsp; 2018-4-6 11:59:55:377&lt;/P&gt;
&lt;P&gt;This field is a string&amp;nbsp; in both tables&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How&amp;nbsp; can I&amp;nbsp; convert 2018-4-6 11:59:55:377&amp;nbsp;&amp;nbsp; to 2018-04-06 11:59:55. any ideas please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thx&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;After getting SAS datetime valued variables if you need to match these variables for some reason then one way would be to round or truncate&amp;nbsp;the values which ever makes more sense for your projectd. Since time and datetime values are numbers of seconds if you round or truncate to integer values then you have a value in whole seconds.&lt;/P&gt;
&lt;P&gt;So for that explicit value either of these would work:&lt;/P&gt;
&lt;P&gt;datetime= round(datetime,1); /* nearest second*/&lt;/P&gt;
&lt;P&gt;datetime= floor (datetime);&amp;nbsp; /*largest integer less than or equal to the datetime value*/&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 May 2018 20:03:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/465808#M70583</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-05-29T20:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466094#M70602</link>
      <description>&lt;P&gt;thanks&amp;nbsp; for your&amp;nbsp; response ballardw..&lt;/P&gt;
&lt;P&gt;the problem is that I cannot&amp;nbsp; convert this date 2018-4-6 11:59:55:377&amp;nbsp;to a&amp;nbsp; SAS date value. Looks like SAS does not recognize it&lt;/P&gt;
&lt;P&gt;if it was &amp;nbsp;2018-4-6 11:59:55.377&amp;nbsp; would have been fine&amp;nbsp;&amp;nbsp; but &amp;nbsp;2018-4-6 11:59:55:377&amp;nbsp; no good.&lt;/P&gt;
&lt;P&gt;Any way SAS can convert the second ":" into "."? or remove the second ":" and everything&amp;nbsp; after it?&lt;/P&gt;
&lt;P&gt;I tried with&amp;nbsp; substr but the length of&amp;nbsp; the date is not the same&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 15:34:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466094#M70602</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2018-05-30T15:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466112#M70603</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/34400"&gt;@Tal&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;thanks&amp;nbsp; for your&amp;nbsp; response ballardw..&lt;/P&gt;
&lt;P&gt;the problem is that I cannot&amp;nbsp; convert this date 2018-4-6 11:59:55:377&amp;nbsp;to a&amp;nbsp; SAS date value. Looks like SAS does not recognize it&lt;/P&gt;
&lt;P&gt;if it was &amp;nbsp;2018-4-6 11:59:55.377&amp;nbsp; would have been fine&amp;nbsp;&amp;nbsp; but &amp;nbsp;2018-4-6 11:59:55:377&amp;nbsp; no good.&lt;/P&gt;
&lt;P&gt;Any way SAS can convert the second ":" into "."? or remove the second ":" and everything&amp;nbsp; after it?&lt;/P&gt;
&lt;P&gt;I tried with&amp;nbsp; substr but the length of&amp;nbsp; the date is not the same&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Show your code, SAS reads it fine for me.&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 16:22:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466112#M70603</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-05-30T16:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466142#M70604</link>
      <description>&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; test;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;y=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;'2018-5-9 13:18:31:377'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;dd=input(y,&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;anydtdtm32.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;SAS displays dd as missing &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;when running&amp;nbsp; this&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; test;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;y=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;'2018-5-9 13:18:31.377'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;dd=input(y,&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;anydtdtm32.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;SAS displays dd=1841491111.4&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 17:27:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466142#M70604</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2018-05-30T17:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466158#M70606</link>
      <description>&lt;P&gt;The second one is correct, you just didn't apply a format.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also just take the date part using SCAN() and then convert that to a date. You could do that directly in the JOIN as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/34400"&gt;@Tal&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#000080"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; test;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;y=&lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#800080"&gt;'2018-5-9 13:18:31:377'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;dd=input(y,&lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#008080"&gt;anydtdtm32.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT face="Courier New" size="3" color="#000080"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;SAS displays dd as missing &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;when running&amp;nbsp; this&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#000080"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; test;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;y=&lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#800080"&gt;'2018-5-9 13:18:31.377'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;dd=input(y,&lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#008080"&gt;anydtdtm32.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT face="Courier New" size="3" color="#000080"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;SAS displays dd=1841491111.4&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 18:06:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466158#M70606</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-05-30T18:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466203#M70614</link>
      <description>&lt;P&gt;right , the second one is correct&amp;nbsp; but&amp;nbsp; what I am saying is the&amp;nbsp; date in&amp;nbsp;one of the&amp;nbsp; tables has&amp;nbsp; value of this&amp;nbsp; type :&lt;FONT color="#800080" face="Courier New" size="3"&gt;2018-5-9 13:18:31:377 not 2018-5-9 13:18:31.377 and&amp;nbsp; seems like the 1st one is not&amp;nbsp; a valid date format so no way I can&amp;nbsp; convert&amp;nbsp; it &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;can&amp;nbsp; SAS remove&amp;nbsp; the&amp;nbsp; ":377" ?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 19:16:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466203#M70614</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2018-05-30T19:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466223#M70616</link>
      <description>&lt;P&gt;&lt;STRONG&gt;You can also just take the date part using SCAN() and then convert that to a date. You could do that directly in the JOIN as well.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/34400"&gt;@Tal&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;right , the second one is correct&amp;nbsp; but&amp;nbsp; what I am saying is the&amp;nbsp; date in&amp;nbsp;one of the&amp;nbsp; tables has&amp;nbsp; value of this&amp;nbsp; type :&lt;FONT face="Courier New" size="3" color="#800080"&gt;2018-5-9 13:18:31:377 not 2018-5-9 13:18:31.377 and&amp;nbsp; seems like the 1st one is not&amp;nbsp; a valid date format so no way I can&amp;nbsp; convert&amp;nbsp; it &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#800080"&gt;can&amp;nbsp; SAS remove&amp;nbsp; the&amp;nbsp; ":377" ?&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 20:03:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466223#M70616</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-05-30T20:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466227#M70617</link>
      <description>&lt;P&gt;there will be more records on a&amp;nbsp; given date&amp;nbsp; in both tables so&amp;nbsp; I will need to keep the hh mm and ss&amp;nbsp; from the time part to be able to match correctly&lt;/P&gt;
&lt;P&gt;I was&amp;nbsp; wondering&amp;nbsp; if&amp;nbsp; the&amp;nbsp; last ":" can be replaced&amp;nbsp; with "."&amp;nbsp; or truncate&amp;nbsp; the&amp;nbsp; string,&amp;nbsp;&amp;nbsp; remove everything after the&amp;nbsp; last ":"&amp;nbsp; including the ":"&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 20:11:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466227#M70617</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2018-05-30T20:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466374#M70625</link>
      <description>&lt;P&gt;data test;&lt;BR /&gt;y='2018-5-9 13:18:31:377';&lt;BR /&gt;if count(y,':') = 3 then do;&lt;BR /&gt;ind = find(y,':',-1);&lt;BR /&gt;rep = trim(substr(y,1,ind-1))||'.'||substr(y,ind+1); *For Replacing;&lt;BR /&gt;trun = substr(y,1,ind-1); *For Truncating;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 09:49:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466374#M70625</guid>
      <dc:creator>MadhuKorni</dc:creator>
      <dc:date>2018-05-31T09:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466532#M70627</link>
      <description>&lt;P&gt;sorry, I don't see&amp;nbsp; how&amp;nbsp; your code&amp;nbsp; replaces ":"&amp;nbsp; with "."&amp;nbsp; but&amp;nbsp; I found&amp;nbsp; a&amp;nbsp; way how to remove&amp;nbsp; the last part of the date and&amp;nbsp; that would be good enough for me&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;y=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;'2018-5-9 13:18:31:377'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;n = length(y) - length(scan(y, -&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;, &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;':'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;) );&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;y=substr(y,&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;,n-&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you guys for&amp;nbsp; your help&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 16:05:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/date-format/m-p/466532#M70627</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2018-05-31T16:05:11Z</dc:date>
    </item>
  </channel>
</rss>

