<?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: Time stamp in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Time-stamp/m-p/548700#M688439</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and if you want to convert the date into the numerical representation of QlikView you can use the following: num(DayStart(yourTimeStamp))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Oct 2013 10:38:19 GMT</pubDate>
    <dc:creator>ali_hijazi</dc:creator>
    <dc:date>2013-10-30T10:38:19Z</dc:date>
    <item>
      <title>Time stamp</title>
      <link>https://community.qlik.com/t5/QlikView/Time-stamp/m-p/548698#M688436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to convert below date into date, year, month, time of the day sale occurs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2013-06-14 16:42:42 +1000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;SAK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 10:22:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-stamp/m-p/548698#M688436</guid>
      <dc:creator />
      <dc:date>2013-10-30T10:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Time stamp</title>
      <link>https://community.qlik.com/t5/QlikView/Time-stamp/m-p/548699#M688437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Month( Date#( YOURDATEFIELD,'MMM') ) as Month&lt;/P&gt;&lt;P&gt;Year( Date#( YOURDATEFIELD,'YYYY') ) as Year&lt;/P&gt;&lt;P&gt;Day( Date#( YOURDATEFIELD,'DD') ) as Day&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date( Floor( Timestamp#( '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;2013-06-14 16:42:42&lt;/SPAN&gt;', 'YYYY-MM-DD hh:mm:ss')), 'M/D/YYYY') as CreatedDate&lt;/P&gt;&lt;P&gt;Date( Floor( Timestamp#( '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;2013-06-14 16:42:42&lt;/SPAN&gt;', 'YYYY-MM-DD hh:mm:ss')), 'YYYY') as Year&lt;/P&gt;&lt;P&gt;Date( Floor( Timestamp#( '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;2013-06-14 16:42:42&lt;/SPAN&gt;', 'YYYY-MM-DD hh:mm:ss')), 'MMM') as Month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 10:27:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-stamp/m-p/548699#M688437</guid>
      <dc:creator />
      <dc:date>2013-10-30T10:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Time stamp</title>
      <link>https://community.qlik.com/t5/QlikView/Time-stamp/m-p/548700#M688439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and if you want to convert the date into the numerical representation of QlikView you can use the following: num(DayStart(yourTimeStamp))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 10:38:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-stamp/m-p/548700#M688439</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2013-10-30T10:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Time stamp</title>
      <link>https://community.qlik.com/t5/QlikView/Time-stamp/m-p/548701#M688440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this in your load statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#(SubField(DateField, ' ', 1), 'YYYY-MM-DD')) As DaleDate,&lt;/P&gt;&lt;P&gt;Year(Date#(SubField(DateField, ' ', 1), 'YYYY-MM-DD')) As Year,&lt;/P&gt;&lt;P&gt;Month(Date#(SubField(DateField, ' ', 1), 'YYYY-MM-DD')) As Month,&lt;/P&gt;&lt;P&gt;Day(Date#(SubField(DateField, ' ', 1), 'YYYY-MM-DD')) As Day,&lt;/P&gt;&lt;P&gt;Time(Time#(SubField(DateField, ' ', 2), 'HH:MM:SS')) As Time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 10:39:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-stamp/m-p/548701#M688440</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2013-10-30T10:39:33Z</dc:date>
    </item>
  </channel>
</rss>

