<?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: count per period in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095646#M364011</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This happens because just because you formatted Date as YYYY-MM doesn't mean that date information is gone. It is still a date (02/05/2016) represented as 2016-02. So for each distinct date you see a different YYYY-MM. But MonthName and MonthStart helps you resolve this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Jan 2016 12:22:29 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-01-15T12:22:29Z</dc:date>
    <item>
      <title>count per period</title>
      <link>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095642#M364007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my load script i create a field named period with date(calenderdate,'YYYY-MM').&lt;/P&gt;&lt;P&gt;works fine&lt;/P&gt;&lt;P&gt;now i want a chart with number of invoices per period.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dimension : period&lt;/P&gt;&lt;P&gt;expression : =count(invoice)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my chart sometimes a period is displayed twice with different results. Other periods are displayed once in that chart.&lt;/P&gt;&lt;P&gt;Cannot figure out why this happens. Should be a very simple chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2016 11:04:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095642#M364007</guid>
      <dc:creator>curiousfellow</dc:creator>
      <dc:date>2016-01-15T11:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: count per period</title>
      <link>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095643#M364008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;Date(monthstart(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;calenderdate&lt;/SPAN&gt;), '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;YYYY-MM&lt;/SPAN&gt;') as period,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'comic sans ms', sans-serif;"&gt;Feeling Qlikngry?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A _jive_internal="true" data-containerid="2049" data-containertype="14" data-objectid="8342" data-objecttype="102" href="https://community.qlik.com/docs/DOC-8342" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;How To /Missing Manual(24 articles)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2016 11:06:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095643#M364008</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2016-01-15T11:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: count per period</title>
      <link>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095644#M364009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a MonthYearField one of these ways to make it work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MonthName(calendardate) as period&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date(MonthStart(calendardate), 'YYYY-MM') as period&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2016 11:07:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095644#M364009</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-01-15T11:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: count per period</title>
      <link>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095645#M364010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you both, it worked.&lt;/P&gt;&lt;P&gt;So Qlikview still remembers the original date, allthough i created a new field ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise I do not understand why this happens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2016 12:18:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095645#M364010</guid>
      <dc:creator>curiousfellow</dc:creator>
      <dc:date>2016-01-15T12:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: count per period</title>
      <link>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095646#M364011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This happens because just because you formatted Date as YYYY-MM doesn't mean that date information is gone. It is still a date (02/05/2016) represented as 2016-02. So for each distinct date you see a different YYYY-MM. But MonthName and MonthStart helps you resolve this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2016 12:22:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/count-per-period/m-p/1095646#M364011</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-01-15T12:22:29Z</dc:date>
    </item>
  </channel>
</rss>

