<?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 MMM YYYY into normal date format DD-MM-YYYY in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370732#M845257</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is Month field a text or date field? Check these links&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2954"&gt;Why don’t my dates work?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2622"&gt;Get the Dates Right&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3102"&gt;QlikView Date fields&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then you can check out this for dates in set analysis&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/4394"&gt;Dates in Set Analysis&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Apr 2017 11:14:15 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-04-10T11:14:15Z</dc:date>
    <item>
      <title>How to convert MMM YYYY into normal date format DD-MM-YYYY</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370728#M845253</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 month field which is in 'MMM YYYY' format. I want to get the count of all records which is less the 'Jan 2016'. I am using below set expression but it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Num(Count({Alt1&amp;lt;Month={"&amp;lt; Jan 2016 "}&amp;gt;} Distinct record_id), '##,##0')&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume it is not working because of Date format.&lt;/P&gt;&lt;P&gt;Could any one help on this please.&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-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370728#M845253</guid>
      <dc:creator>gayatri7</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert MMM YYYY into normal date format DD-MM-YYYY</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370729#M845254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How did you create the Month field in the script ? Did you use any date function or created as a string? If you have created it just concatenating multiple strings, 'not working' behavior is not unexpected. You should probably create the field using function like MonthName() or something similar ( Date( ....., 'MMM YYYY')). Could you post a sample qvw that demonstrates the issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 11:04:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370729#M845254</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-04-10T11:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert MMM YYYY into normal date format DD-MM-YYYY</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370730#M845255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;is it a dual date?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;if yes you could try:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;=Num(Count({Alt1&amp;lt;Month={"&amp;lt;'Jan 2016'"}&amp;gt;} Distinct record_id), '##,##0') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Count({Alt1&amp;lt;Month={"&amp;lt;$(=date(date#('Jan 2016','MMM YYYY')))"}&amp;gt;} Distinct record_id), '##,##0') &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 11:04:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370730#M845255</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-10T11:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert MMM YYYY into normal date format DD-MM-YYYY</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370731#M845256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am assuming, Instead of Month Field you may have similar field like Jan 2016 called Month_Year. Would you describe or show the Dimension field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 11:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370731#M845256</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-04-10T11:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert MMM YYYY into normal date format DD-MM-YYYY</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370732#M845257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is Month field a text or date field? Check these links&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2954"&gt;Why don’t my dates work?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2622"&gt;Get the Dates Right&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3102"&gt;QlikView Date fields&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then you can check out this for dates in set analysis&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/4394"&gt;Dates in Set Analysis&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 11:14:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370732#M845257</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-04-10T11:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert MMM YYYY into normal date format DD-MM-YYYY</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370733#M845258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is my Month field created from [Vcto Recibo] field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(MonthStart(date#([Vcto Recibo],'DD-MM-YYYY hh:mm:ss')), 'MMM YYYY') as Month&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 11:38:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370733#M845258</guid>
      <dc:creator>gayatri7</dc:creator>
      <dc:date>2017-04-10T11:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert MMM YYYY into normal date format DD-MM-YYYY</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370734#M845259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then try 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;&lt;STRONG&gt;=Num(Count({Alt1&amp;lt;Month={"$(='&amp;lt;' &amp;amp; Date(MakeDate(2016, 1), 'MMM YYYY'))"}&amp;gt;} Distinct record_id), '##,##0') &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 11:41:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-MMM-YYYY-into-normal-date-format-DD-MM-YYYY/m-p/1370734#M845259</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-04-10T11:41:24Z</dc:date>
    </item>
  </channel>
</rss>

