<?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: Get Year/Month/Day from date time feild in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617067#M1109298</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;Use below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year(Date(date#(subfield([Created at],' ',1),'dd.MM.yyyy')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month(Date(date#(subfield([Created at],' ',1),'dd.MM.yyyy')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Day(Date(date#(subfield([Created at],' ',1),'dd.MM.yyyy')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Mar 2014 06:25:05 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-25T06:25:05Z</dc:date>
    <item>
      <title>Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617064#M1109295</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;I have a column that has date time.&lt;/P&gt;&lt;P&gt;"3/8/2011&amp;nbsp; 10:56:00 AM"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to get year,month and day separately&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can get date by using &lt;/P&gt;&lt;P&gt; date#(subfield([Created at],' ',1),'dd.MM.yyyy') as MyDate, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i cant seperate year,month and day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:19:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617064#M1109295</guid>
      <dc:creator>anuradhaa</dc:creator>
      <dc:date>2014-03-25T06:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617065#M1109296</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;Use Day(dateFieldName) as Day,&lt;/P&gt;&lt;P&gt;Month(dateFieldName) as Month,&lt;/P&gt;&lt;P&gt;Year(dateFieldName) as Year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at script level&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:22:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617065#M1109296</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-03-25T06:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617066#M1109297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try Below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Day(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Created at]&lt;/SPAN&gt;) as Day,&lt;/P&gt;&lt;P&gt;Month(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Created at]&lt;/SPAN&gt;)&amp;nbsp; as Month,&lt;/P&gt;&lt;P&gt;Year (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Created at]&lt;/SPAN&gt;) as Year,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Sushil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:24:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617066#M1109297</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2014-03-25T06:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617067#M1109298</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;Use below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year(Date(date#(subfield([Created at],' ',1),'dd.MM.yyyy')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month(Date(date#(subfield([Created at],' ',1),'dd.MM.yyyy')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Day(Date(date#(subfield([Created at],' ',1),'dd.MM.yyyy')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:25:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617067#M1109298</guid>
      <dc:creator />
      <dc:date>2014-03-25T06:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617068#M1109299</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;Extract like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year = Right(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;MyDate&lt;/SPAN&gt;,4) as Year&lt;/P&gt;&lt;P&gt;Month = Mid(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;MyDate&lt;/SPAN&gt;,4,2) as Month&lt;/P&gt;&lt;P&gt;Day = Left(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;MyDate&lt;/SPAN&gt;,2) as Day&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:25:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617068#M1109299</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-03-25T06:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617069#M1109300</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;/P&gt;&lt;P&gt;but i have months with one digit and two digit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then this will not 100% work.&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, 25 Mar 2014 06:31:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617069#M1109300</guid>
      <dc:creator>anuradhaa</dc:creator>
      <dc:date>2014-03-25T06:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617070#M1109301</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;You have to write some thing below in place of dots you have to use / and extract like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date(date#(subfield(Datecol,' ',1),'d/M/yyyy'),'d/M/yyyy') as MyDate,&lt;/P&gt;&lt;P&gt;Year(date#(subfield(Datecol,' ',1),'d/M/yyyy')) as Year,&lt;/P&gt;&lt;P&gt;Month(date#(subfield(Datecol,' ',1),'d/M/yyyy')) as Month,&lt;/P&gt;&lt;P&gt;Day(date#(subfield(Datecol,' ',1),'d/M/yyyy')) as Day&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:39:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617070#M1109301</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-03-25T06:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617071#M1109302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; date#(subfield([Created at],' ',1),'dd.MM.yyyy') as MyDate,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; subfield(MyDate,'/',1) as month, &lt;/P&gt;&lt;P&gt;&amp;nbsp; subfield(MyDate,'/',2) as day,&lt;/P&gt;&lt;P&gt;&amp;nbsp; subfield(MyDate,'/',3) as Year solve my issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:40:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617071#M1109302</guid>
      <dc:creator>anuradhaa</dc:creator>
      <dc:date>2014-03-25T06:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617072#M1109303</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;You can try this as well&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Date(Date#('3/8/2011&amp;nbsp; 10:56:00 AM','DD/MM/YYYY&amp;nbsp; h:mm:ss TT'),'MMM')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Date(Date#(DateField,'DD/MM/YYYY h:mm:ss TT'),'MMM') as Month&lt;/P&gt;&lt;P&gt;=Date(Date#(DateField,'DD/MM/YYYY h:mm:ss TT'),'DD') as Day&lt;/P&gt;&lt;P&gt;=Date(Date#(DateField,'DD/MM/YYYY h:mm:ss TT'),'YYYY') as Year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here make sure that format define inside Date# should exactly match with the format in the datefield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Sushil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:42:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617072#M1109303</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2014-03-25T06:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617073#M1109304</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 like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;Year(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;MyDate&lt;/SPAN&gt;) AS Year,&lt;/P&gt;&lt;P&gt;Month(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;MyDate&lt;/SPAN&gt;) AS Month,&lt;/P&gt;&lt;P&gt;Day(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;MyDate&lt;/SPAN&gt;) AS Day;&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(date#(subfield([Created at],' ',1),'D/M/YYYY')) as MyDate,,&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&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&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&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;From DataSource;&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 this helps you.&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;Regards,&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;jagan.&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, 25 Mar 2014 06:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617073#M1109304</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-03-25T06:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617074#M1109307</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;For month you can write this way also suggest you dont use subfield for final date because it is in string format try to convert this into date format see below script for month and also i provided you for month, year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mid(Date((date#(subfield(Datecol,' ',1),'d/M/yyyy')),'DD/MM/YYYY'),4,2) as NewMonth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it gives only 1 or 2 month values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:46:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617074#M1109307</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-03-25T06:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617075#M1109308</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;If you use like this then it is considered as Text fields, while sorting this will create problems&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;subfield(MyDate,'/',1) as month,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; subfield(MyDate,'/',2) as day,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; subfield(MyDate,'/',3) as Year &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:47:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617075#M1109308</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-03-25T06:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617076#M1109309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Instead of subfield you could use&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Num(Month(MyDate), '00') as month,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Num(Day(MyDate), '00') as day,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Year(MyDate) as Year&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 06:57:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617076#M1109309</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2014-03-25T06:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Get Year/Month/Day from date time feild</title>
      <link>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617077#M1109310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Considering that you have more than one timestamp format in your apps, you can use below method in script to get Date, Month, Year etc from your field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my apps, Date,time format is using '/' separator..&lt;/P&gt;&lt;P&gt;You can change as per your apps.&lt;/P&gt;&lt;P&gt;=================================================&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Date(DateTimeField) as Date,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Day(DateTimeField) as Day,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Month(DateTimeField) as Month,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Year(DateTimeField) as Year,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Time(DateTimeField) as Time,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Hour(DateTimeField) as Hour,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Minute(DateTimeField) as Minute,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Second(DateTimeField) as Seconds;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TimeStamp(Alt(Timestamp#(DateTimeField,'D/M/YYYY&amp;nbsp; hh:mm:ss TT'),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Timestamp#(DateTimeField,'DD/MM/YYYY&amp;nbsp; hh:mm:ss TT'),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Timestamp#(DateTimeField,'DD/M/YYYY&amp;nbsp; hh:mm:ss TT'),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Timestamp#(DateTimeField,'D/MM/YYYY&amp;nbsp; hh:mm:ss TT'))) as DateTimeField&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; DateTimeField&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 3/8/2011&amp;nbsp; 10:56:00 AM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 04/08/2011&amp;nbsp; 11:10:00 AM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 5/08/2011&amp;nbsp; 11:11:11 AM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 06/8/2011&amp;nbsp; 11:12:12 AM &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 07:08:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-Year-Month-Day-from-date-time-feild/m-p/617077#M1109310</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-25T07:08:38Z</dc:date>
    </item>
  </channel>
</rss>

