<?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: How to convert a Month, Year and day into a date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017787#M930780</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;makedate(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Year,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;month&lt;/SPAN&gt;&lt;/SPAN&gt;) as Date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Mar 2016 11:39:09 GMT</pubDate>
    <dc:creator>arulsettu</dc:creator>
    <dc:date>2016-03-07T11:39:09Z</dc:date>
    <item>
      <title>How to convert a Month, Year and day into a date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017783#M930776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My script has three fields: A month, day and Year. What I would like to do is to convert it into one variable called Date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have an idea? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used "Date(day&amp;amp;'/'&amp;amp;Month&amp;amp;'/'&amp;amp;Year) as Date"&amp;nbsp; and it is not working properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017783#M930776</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a Month, Year and day into a date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017784#M930777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Use,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Makedate(Year,Mont,Date) as Date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 11:38:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017784#M930777</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2016-03-07T11:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a Month, Year and day into a date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017785#M930778</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;MakeDate(Year, Month, Day)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 11:38:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017785#M930778</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2016-03-07T11:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a Month, Year and day into a date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017786#M930779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the MakeDate() function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MakeDate(Year, Month, Day) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE: &lt;/STRONG&gt;In case Month is a text (Jan, Feb, Mar, .... etc), you can try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MakeDate(Year, Month(Date#(Month, 'MMM')), Day) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 11:38:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017786#M930779</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-07T11:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a Month, Year and day into a date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017787#M930780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;makedate(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Year,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;month&lt;/SPAN&gt;&lt;/SPAN&gt;) as Date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 11:39:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017787#M930780</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2016-03-07T11:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a Month, Year and day into a date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017788#M930781</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;Suppose, if the Month is in Text, then try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MakeDate(Year, Month(&lt;SPAN style="font-size: 13.3333px;"&gt;(Date#(Month, 'MMM')))&lt;/SPAN&gt;, Day)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 11:42:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017788#M930781</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2016-03-07T11:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a Month, Year and day into a date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017789#M930782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As all suggested use the makedate() function &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;MakeDate(Year, Month, Date) .....you need to keep the order of the inputs ..that is anything placed as 1 argument will be taken as the&amp;nbsp; Year ,,2nd as the month ....and 3 as the date ...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;if you give only year than the month and date will be defaulted to 01 &amp;amp;01 &lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 11:43:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017789#M930782</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-03-07T11:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a Month, Year and day into a date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017790#M930783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script was giving 0 values because Month variable was in text format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now it is working well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 12:25:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-Month-Year-and-day-into-a-date/m-p/1017790#M930783</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-07T12:25:55Z</dc:date>
    </item>
  </channel>
</rss>

