<?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 Formatting Dates for a Qlikview Doc in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170291#M40772</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Al,&lt;/P&gt;&lt;P&gt;Search for "Date and Time Functions" in the QlikView Help file...you'll find a treasure trove of great operators to manipulate your date field... &lt;IMG alt="Yes" src="http://community.qlik.com/emoticons/emotion-21.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Aug 2010 03:44:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-08-21T03:44:54Z</dc:date>
    <item>
      <title>Formatting Dates for a Qlikview Doc</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170284#M40765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Working on my first Qlikview document. The dates in my sales report are in MM/DD/YYYY format.&lt;/P&gt;&lt;P&gt;I would like to set up a list box that will allow filtering sales by month. When I create the list box, I get all of the months repeated for each sales in the applicable month. So my list box has 10 Januarys, 13 Februarys, 6 Marchs, etc.&lt;/P&gt;&lt;P&gt;How do I correct this in the script, so I only get one of each month, and when that month is selected by the users, all of the sales in that month are highlighted in the document.&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Aug 2010 22:06:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170284#M40765</guid>
      <dc:creator />
      <dc:date>2010-08-20T22:06:20Z</dc:date>
    </item>
    <item>
      <title>Formatting Dates for a Qlikview Doc</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170285#M40766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, the syntax is month(datefield). Is that not what you have currently?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Aug 2010 22:12:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170285#M40766</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2010-08-20T22:12:14Z</dc:date>
    </item>
    <item>
      <title>Formatting Dates for a Qlikview Doc</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170286#M40767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only thing I have at this point is the date field EngagementDate being pulled in from the load script. I'm using that field in a List box and have modified the format so that it displays in MMM format. However, the EngagementDate field contains the MM/DD/YYYY from the database. Its not broken out.&lt;/P&gt;&lt;P&gt;I am a very new user and have not attended a training session yet. Just building a document using the reference material contained with the application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Aug 2010 22:17:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170286#M40767</guid>
      <dc:creator />
      <dc:date>2010-08-20T22:17:21Z</dc:date>
    </item>
    <item>
      <title>Formatting Dates for a Qlikview Doc</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170287#M40768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a list box that lists an Expression. The expression would then be the following: month(EngagementDate). If this does not work, then your date field is not formatted properly as a date and you should fix that in the script.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Aug 2010 22:35:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170287#M40768</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2010-08-20T22:35:44Z</dc:date>
    </item>
    <item>
      <title>Formatting Dates for a Qlikview Doc</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170288#M40769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To explain further, MMM is just a format. It isn't changing the underlying value of the field, which is still a date. It is only changing how the date is displayed. The month() function, on the other hand, extracts the month from the date. So all dates in a month will have the same month(Date). For performance, it is usually better to establish a Month field in the script.&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;LOAD&lt;BR /&gt;...&lt;BR /&gt;,EngagementDate&lt;BR /&gt;,month(EngagementDate) as EngagementMonth&lt;BR /&gt;...&lt;/P&gt;&lt;P&gt;Sometimes this is done with a separate calendar table. Sometimes this field is just added to your main table. Either way works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Aug 2010 23:25:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170288#M40769</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-08-20T23:25:45Z</dc:date>
    </item>
    <item>
      <title>Formatting Dates for a Qlikview Doc</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170289#M40770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, John, that's an excellent explanation!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Aug 2010 23:45:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170289#M40770</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2010-08-20T23:45:10Z</dc:date>
    </item>
    <item>
      <title>Formatting Dates for a Qlikview Doc</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170290#M40771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks John&lt;/P&gt;&lt;P&gt;This worked perfectly and accomplished what I needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 00:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170290#M40771</guid>
      <dc:creator />
      <dc:date>2010-08-21T00:12:17Z</dc:date>
    </item>
    <item>
      <title>Formatting Dates for a Qlikview Doc</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170291#M40772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Al,&lt;/P&gt;&lt;P&gt;Search for "Date and Time Functions" in the QlikView Help file...you'll find a treasure trove of great operators to manipulate your date field... &lt;IMG alt="Yes" src="http://community.qlik.com/emoticons/emotion-21.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Aug 2010 03:44:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Dates-for-a-Qlikview-Doc/m-p/170291#M40772</guid>
      <dc:creator />
      <dc:date>2010-08-21T03:44:54Z</dc:date>
    </item>
  </channel>
</rss>

