<?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: Simplified DateTime in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217379#M16352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;datetimevariable = dhms(datepart(datetimevariable),0,0,0);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 May 2015 22:55:32 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2015-05-19T22:55:32Z</dc:date>
    <item>
      <title>Simplified DateTime</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217375#M16348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;How can I make this DateTime variable (See below) to "01Jan2015:00:00:00.000"dt&amp;nbsp; and still have it as Date/Time variable.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image" src="https://communities.sas.com/legacyfs/online/10513_Capture.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 21:36:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217375#M16348</guid>
      <dc:creator>sdang</dc:creator>
      <dc:date>2015-05-19T21:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Simplified DateTime</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217376#M16349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just wanted to add.&amp;nbsp; I still want to keep it as Date/Time variable but with the seconds., etc as&amp;nbsp; 00:00:00.000.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 21:46:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217376#M16349</guid>
      <dc:creator>sdang</dc:creator>
      <dc:date>2015-05-19T21:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: Simplified DateTime</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217377#M16350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 9pt; background: white; font-family: Consolas;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: navy; font-size: 9pt; background: white; font-family: Consolas;"&gt;format&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: Consolas; font-size: 9pt;"&gt;picture&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt; MyDT&lt;BR /&gt;&amp;nbsp; other = &lt;/SPAN&gt;&lt;SPAN style="background: white; color: purple; font-family: Consolas; font-size: 9pt;"&gt;'%d%B%Y:%0H:%0M:%0s'&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: Consolas; font-size: 9pt;"&gt;DATATYPE&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt;=DATETIME);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 9pt; background: white; font-family: Consolas;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 9pt; background: white; font-family: Consolas;"&gt;data&lt;/STRONG&gt; &lt;SPAN style="background: white; color: blue; font-family: Consolas; font-size: 9pt;"&gt;_null_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt;&amp;nbsp; now = datetime();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: Consolas; font-size: 9pt;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt; now &lt;/SPAN&gt;&lt;SPAN style="background: white; color: teal; font-family: Consolas; font-size: 9pt;"&gt;MyDT26.3&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="background: white; color: blue; font-family: Consolas; font-size: 9pt;"&gt;put&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt; now = ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 9pt; background: white; font-family: Consolas;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="background: white; color: black; font-family: Consolas; font-size: 9pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 22:37:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217377#M16350</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-05-19T22:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Simplified DateTime</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217378#M16351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not doing it.&amp;nbsp; I still have the same result, showing the trailing minutes and seconds.. I want minutes and seconds as 00:00:00.000.&amp;nbsp; The result I wanted like that because I have two data sets with PlayDate and IGTCreatedDate (see image below).&amp;nbsp; I want to join them together.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image" src="https://communities.sas.com/legacyfs/online/10516_Capture.PNG" /&gt;&lt;/P&gt;&lt;P&gt;Above is just a sample data.&amp;nbsp; I want to show the format between PlayerDayDate and IGTAccountCreated.&amp;nbsp; Because of the format I cannot join them together. The reason I want to join them is to see if a guest join on 01May2015 and play on 01May2015.&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 22:55:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217378#M16351</guid>
      <dc:creator>sdang</dc:creator>
      <dc:date>2015-05-19T22:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Simplified DateTime</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217379#M16352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;datetimevariable = dhms(datepart(datetimevariable),0,0,0);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 22:55:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217379#M16352</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-05-19T22:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Simplified DateTime</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217380#M16353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, that is what I need.&amp;nbsp; You solved my problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 23:01:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217380#M16353</guid>
      <dc:creator>sdang</dc:creator>
      <dc:date>2015-05-19T23:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Simplified DateTime</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217381#M16354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you &lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="312252" data-username="SASKiwi" href="https://communities.sas.com/people/SASKiwi" id="jive-31225247456469919230186"&gt;SASKiwi&lt;/A&gt;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 23:02:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Simplified-DateTime/m-p/217381#M16354</guid>
      <dc:creator>sdang</dc:creator>
      <dc:date>2015-05-19T23:02:51Z</dc:date>
    </item>
  </channel>
</rss>

