<?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 ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711453#M219179</link>
    <description>No problem Peter thanks for your response.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 14 Jan 2021 14:02:13 GMT</pubDate>
    <dc:creator>Cugel</dc:creator>
    <dc:date>2021-01-14T14:02:13Z</dc:date>
    <item>
      <title>Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711442#M219169</link>
      <description>&lt;PRE id="tw-target-text" class="tw-data-text tw-text-large XcVN5d tw-ta" dir="ltr" data-placeholder="Vertaling"&gt;&lt;SPAN&gt;I would like to convert the date format ddmmmyyyy:hh:mm:ss to dd-mm-yyyy hh:mm:ss so European standard. &lt;BR /&gt;I have been looking for a solution for some time but have not yet been able to find a clear example. &lt;BR /&gt;I work with SAS Data Integration Studio. Any help is appreciated&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 13:11:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711442#M219169</guid>
      <dc:creator>Cugel</dc:creator>
      <dc:date>2021-01-14T13:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711447#M219173</link>
      <description>&lt;P&gt;I don't know if it exists out-the-box. You can always roll out your own like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format; 
  picture dtfmt (default=19)
    low - high = '0%d-0%m-%Y 0%H:0%M:0%S' (datatype=datetime)
  ;
run;

data _null_;
   dt = 0;
   put dt dtfmt.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Jan 2021 13:28:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711447#M219173</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-14T13:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711448#M219174</link>
      <description>Hello Peter,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks for your response.&lt;BR /&gt;&lt;BR /&gt;However, I work with the graphics side of SAS DIS.&lt;BR /&gt;&lt;BR /&gt;To my knowledge, your solution cannot be applied here.&lt;BR /&gt;&lt;BR /&gt;In the expression field I have included the datetime().&lt;BR /&gt;&lt;BR /&gt;So now the datetime() must be displayed in dd-mm-yyyy hh: mm: ss.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Greetings Jos&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[cid:image001.png@01D6EA82.C173AD00]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Jan 2021 13:43:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711448#M219174</guid>
      <dc:creator>Cugel</dc:creator>
      <dc:date>2021-01-14T13:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711450#M219176</link>
      <description>&lt;P&gt;I have no idea about SAS DIS &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 13:49:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711450#M219176</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-14T13:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711453#M219179</link>
      <description>No problem Peter thanks for your response.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Jan 2021 14:02:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711453#M219179</guid>
      <dc:creator>Cugel</dc:creator>
      <dc:date>2021-01-14T14:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711495#M219198</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/282811"&gt;@Cugel&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Hello Peter,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks for your response.&lt;BR /&gt;&lt;BR /&gt;However, I work with the graphics side of SAS DIS.&lt;BR /&gt;&lt;BR /&gt;To my knowledge, your solution cannot be applied here.&lt;BR /&gt;&lt;BR /&gt;In the expression field I have included the datetime().&lt;BR /&gt;&lt;BR /&gt;So now the datetime() must be displayed in dd-mm-yyyy hh: mm: ss.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Greetings Jos&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[cid:image001.png@01D6EA82.C173AD00]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You might provide an explicit use case. If it is that DI specific then perhaps we should move this to the DI section such as Data Management in Solutions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know that some of the graphics don't like certain custom formats in other parts of SAS. Very few graphs that made much sense actually use datetime values directly because the text is so long it is either cumbersome or occupies too much graph space.&lt;/P&gt;
&lt;P&gt;So there may be workarounds by providing other variables or label options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 16:24:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711495#M219198</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-01-14T16:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711883#M219359</link>
      <description>&lt;P&gt;I would like to convert the date format ddmmmyyyy:hh:mm:ss to dd-mm-yyyy hh:mm:ss so European standard. &lt;BR /&gt;I have been looking for a solution for some time but have not yet been able to find a clear example. &lt;BR /&gt;I work with the graphics side of SAS Data Integration Studio.&lt;/P&gt;
&lt;P&gt;Any help is appreciated.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TEST_JOB_EXAMPLE_LOADDATE.PNG" style="width: 819px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53562iE6D767D3F79E7BC5/image-size/large?v=v2&amp;amp;px=999" role="button" title="TEST_JOB_EXAMPLE_LOADDATE.PNG" alt="TEST_JOB_EXAMPLE_LOADDATE.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;datetime() format is now&amp;nbsp;ddmmmyyyy:hh:mm:ss and I would like&amp;nbsp;dd-mm-yyyy hh:mm:ss (European standard).&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2021 20:05:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711883#M219359</guid>
      <dc:creator>Cugel</dc:creator>
      <dc:date>2021-01-16T20:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711887#M219361</link>
      <description>&lt;P&gt;You can create a custom format in a code node, and define the FMTSEARCH ootion in the precode for your job.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2021 20:49:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711887#M219361</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-01-16T20:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711890#M219363</link>
      <description>Hi Kurt,&lt;BR /&gt;&lt;BR /&gt;Thanks for your comment.&lt;BR /&gt;&lt;BR /&gt;Do you have maybe an example for me of such a code statement.&lt;BR /&gt;&lt;BR /&gt;There is no clear example in the DIS manual.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Options fmtsearch = (myformat library work);&lt;BR /&gt;&lt;BR /&gt;myformat ???&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 16 Jan 2021 21:56:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711890#M219363</guid>
      <dc:creator>Cugel</dc:creator>
      <dc:date>2021-01-16T21:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711923#M219382</link>
      <description>&lt;P&gt;The documentation contains examples.&lt;/P&gt;
&lt;P&gt;See&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p1xidhqypi0fnwn1if8opjpqpbmn.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;FORMAT Procedure&lt;/A&gt;, particularly the&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p0n990vq8gxca6n1vnsracr6jp2c.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;PICTURE Statement&lt;/A&gt;, and the&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lesysoptsref&amp;amp;docsetTarget=p1fvn6rwmpf1njn1whkud1hmsc97.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;FMTSEARCH= System Option&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;The FMTSEARCH option lists the catalogs or libraries where SAS goes looking for defined formats (defined formats are stored as catalog entries). If only a single-level library name is supplied, SAS assumes that there is a catalog named FORMATS there.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 08:12:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711923#M219382</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-01-17T08:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711989#M219413</link>
      <description>Hi Kurt,&lt;BR /&gt;&lt;BR /&gt;Thanks for tutorial tips. Will take some study hours in the evenings.&lt;BR /&gt;&lt;BR /&gt;For now I have solved the problem as follows.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;CAT(catx('-',put(DAY(DATEPART(DATETIME())),z2.)&lt;BR /&gt;&lt;BR /&gt;,put( MONTH(DATEPART(DATETIME())),z2.)&lt;BR /&gt;&lt;BR /&gt;,YEAR(DATEPART(DATETIME()))&lt;BR /&gt;&lt;BR /&gt;),' ',&lt;BR /&gt;&lt;BR /&gt;catx(':',put(HOUR(DATETIME()),z2.)&lt;BR /&gt;&lt;BR /&gt;, put(MINUTE(DATETIME()),z2.)&lt;BR /&gt;&lt;BR /&gt;))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The loading date 17JAN2021:21:22:00  then becomes 17-01-2021 21:22.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Maybe not so neat, but workable for the moment.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 17 Jan 2021 21:36:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711989#M219413</guid>
      <dc:creator>Cugel</dc:creator>
      <dc:date>2021-01-17T21:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711996#M219415</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; datetime() format is now&amp;nbsp;ddmmmyyyy:hh:mm:ss&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;1. &lt;FONT face="courier new,courier"&gt;datetime&lt;/FONT&gt;() is not a format, it is a function&lt;/P&gt;
&lt;P&gt;2. You have no format in place at the moment, so I don't see the conversion you are referring to:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;I would like to convert the date format ddmmmyyyy:hh:mm:ss to dd-mm-yyyy hh:mm:ss so European standard.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;3. You need to see the name of your custom-built format (see &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;'s reply) in the format box. &lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 22:55:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/711996#M219415</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-01-17T22:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/712010#M219420</link>
      <description>&lt;P&gt;The photograph makes it looks like you have defined something to be calculated as the value of the DATETIME() function.&lt;/P&gt;
&lt;P&gt;If you want to instead define it as a string that looks the way you want then use this as the expression:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;catx(' ',put(date(),ddmmyyd10.),put(time(),time8.))&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But that will create a CHARACTER variable and not the NUMERIC variable your current expression is creating.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2021 03:25:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/712010#M219420</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-01-18T03:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/712056#M219438</link>
      <description>Hi Tom,&lt;BR /&gt;&lt;BR /&gt;Thanks for your comment.&lt;BR /&gt;&lt;BR /&gt;I looked for the solution in the same direction and already formatted the datetime () as a string.&lt;BR /&gt;&lt;BR /&gt;But your solution is more compact and neat.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jan 2021 09:59:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/712056#M219438</guid>
      <dc:creator>Cugel</dc:creator>
      <dc:date>2021-01-18T09:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/712057#M219439</link>
      <description>Hi Chris,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks you for your explanation.&lt;BR /&gt;&lt;BR /&gt;But where can I find the "format box".&lt;BR /&gt;&lt;BR /&gt;Is it a setting that must be placed on the SAS server or is it a format that can be set locally.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jan 2021 10:05:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/712057#M219439</guid>
      <dc:creator>Cugel</dc:creator>
      <dc:date>2021-01-18T10:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: Convert ddmmmyyyy:hh:mmi:ss to dd-mm-yyyy hh:mm:ss</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/712058#M219440</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp; I'm always impressed how you second guess the actual wants/needs from very vaguely worded questions, and even try to provide a full answer based on these guesses.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2021 10:11:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Convert-ddmmmyyyy-hh-mmi-ss-to-dd-mm-yyyy-hh-mm-ss/m-p/712058#M219440</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-01-18T10:11:27Z</dc:date>
    </item>
  </channel>
</rss>

