<?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: Split date and time in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516701#M750606</link>
    <description>&lt;P&gt;Hi, do you have an example you could post?&lt;/P&gt;</description>
    <pubDate>Wed, 05 Dec 2018 11:31:17 GMT</pubDate>
    <dc:creator>hopkinsc</dc:creator>
    <dc:date>2018-12-05T11:31:17Z</dc:date>
    <item>
      <title>Split date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516242#M750598</link>
      <description>&lt;P&gt;Good Day,&lt;/P&gt;&lt;P&gt;I have an issue where by my date and time is currently combined into one field&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.g&lt;/P&gt;&lt;P&gt;01 April 2018, 1:18:55PM&lt;/P&gt;&lt;P&gt;Field name: Time (extract from excel)&lt;/P&gt;&lt;P&gt;i need to split this into two columns eg:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIme&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;Date&lt;/P&gt;&lt;P&gt;1:18:55PM&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;01 April 2018&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;the time field will not be required, however the date will be used in several charts ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Main Question:&lt;/P&gt;&lt;P&gt;How do i split the date and time?&lt;/P&gt;&lt;P&gt;How can align the dates to only be Jan,Feb,March..... (as right it is Jan,Jan,Jan,Jan,Feb,Feb,Feb,March,March,April....)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions would be really appreciated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516242#M750598</guid>
      <dc:creator>CreoLTD112</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Split date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516248#M750599</link>
      <description>&lt;P&gt;These blogs should help.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Get-the-Dates-Right/ba-p/1476178" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Get-the-Dates-Right/ba-p/1476178&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Time-Table/ba-p/1469392" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Time-Table/ba-p/1469392&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Calendar/ba-p/1471527" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Master-Calendar/ba-p/1471527&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 13:32:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516248#M750599</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2018-12-04T13:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Split date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516259#M750600</link>
      <description>&lt;P&gt;You can try this&lt;/P&gt;&lt;PRE&gt;Date(Floor(TimeStamp#(Time, 'DD MMM YYYY, h:mm:ssTT')), 'DD MMM YYYY') as Date,
Time(Frac(TimeStamp#(Time, 'DD MMM YYYY, h:mm:ssTT')), 'h:mm:ssTT') as Time,&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 13:48:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516259#M750600</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-12-04T13:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Split date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516261#M750601</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;to split date and time use the function subfield:&lt;/P&gt;&lt;P&gt;subfield(Yourfield,',',-1) for date&lt;/P&gt;&lt;P&gt;subfield(Yourfield,',',1) for&amp;nbsp;Time&lt;/P&gt;&lt;P&gt;and if you don't want to create master calendar (it's recommended) you can try floor(month(date)), i think it works&lt;/P&gt;&lt;P&gt;Bye&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 13:52:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516261#M750601</guid>
      <dc:creator>juliensaintmaxent3113</dc:creator>
      <dc:date>2018-12-04T13:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Split date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516271#M750602</link>
      <description>&lt;P&gt;How about the attached?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 14:06:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516271#M750602</guid>
      <dc:creator>hopkinsc</dc:creator>
      <dc:date>2018-12-04T14:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Split date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516570#M750604</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;This could work&amp;nbsp;&lt;/P&gt;&lt;P&gt;However the only issue is that my date range (subfield Time) is extensively long - e.g:&amp;nbsp;01 April 2018, 1:18:55PM,01 April 2018, 1:18:55PM,01 April 2018, 1:18:55PM,01 April 2018, 1:18:55PM,01 April 2018, 1:18:55PM, 05 May 2018, 2:45:11,&lt;SPAN&gt;05 May 2018, 2:45:11,05 May 2018, 2:45:11&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;basically there are over 10000 values within the date range ,is there a method to merge all these values rather than adding them one by one?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Dec 2018 06:06:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516570#M750604</guid>
      <dc:creator>CreoLTD112</dc:creator>
      <dc:date>2018-12-05T06:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Split date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516571#M750605</link>
      <description>&lt;P&gt;essentially i need the following transaction&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;chart need to look up the date- and return all values within that month, the months are from Jan to Nov&lt;/P&gt;</description>
      <pubDate>Wed, 05 Dec 2018 06:10:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516571#M750605</guid>
      <dc:creator>CreoLTD112</dc:creator>
      <dc:date>2018-12-05T06:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: Split date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516701#M750606</link>
      <description>&lt;P&gt;Hi, do you have an example you could post?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Dec 2018 11:31:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-date-and-time/m-p/1516701#M750606</guid>
      <dc:creator>hopkinsc</dc:creator>
      <dc:date>2018-12-05T11:31:17Z</dc:date>
    </item>
  </channel>
</rss>

