<?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 and time split in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538356#M688809</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;I have an unusal date field: 2008-05-29T11:00:00Z&amp;nbsp; I dont need the time on the end I just want to pull out the year, month and date as separte fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone offer an suggestions.&amp;nbsp; Ideally like to do this in the script so I can pass on to others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Oct 2013 09:20:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-10-29T09:20:16Z</dc:date>
    <item>
      <title>Date and time split</title>
      <link>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538356#M688809</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;I have an unusal date field: 2008-05-29T11:00:00Z&amp;nbsp; I dont need the time on the end I just want to pull out the year, month and date as separte fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone offer an suggestions.&amp;nbsp; Ideally like to do this in the script so I can pass on to others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 09:20:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538356#M688809</guid>
      <dc:creator />
      <dc:date>2013-10-29T09:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Date and time split</title>
      <link>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538357#M688811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what you can do is &lt;BR /&gt;=Date(DateTimeField,'DD-MMM-YYYY';)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 09:27:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538357#M688811</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2013-10-29T09:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Date and time split</title>
      <link>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538358#M688812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have fixed format of this filed then you can also use &lt;STRONG&gt;subfield() function&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 09:28:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538358#M688812</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2013-10-29T09:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Date and time split</title>
      <link>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538359#M688813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try Floor and date functions&lt;/P&gt;&lt;P&gt;like below&lt;/P&gt;&lt;P&gt;load *, &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Date(Floor(DateTimeField), 'DD/MM'YYYY) As Date,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Year(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Date(Floor(DateTimeField), 'DD/MM'YYYY) as Year,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Month(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Date(Floor(DateTimeField), 'DD/MM'YYYY) as Month&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;from abc&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hope it helps&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 09:37:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538359#M688813</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2013-10-29T09:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Date and time split</title>
      <link>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538360#M688814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see attached document. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uses left() on the date field to strip out the part you need&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 09:39:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-and-time-split/m-p/538360#M688814</guid>
      <dc:creator>bdunphy</dc:creator>
      <dc:date>2013-10-29T09:39:01Z</dc:date>
    </item>
  </channel>
</rss>

