<?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: adding extra month's in Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277697#M1192059</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regarding the lack of association - one of your month fields appears to be inserting spaces. When using Trim() on the month name, I see the correct association, but when using the Month field as-is, I do not. Try running Trim() on the month name you are deriving and see if that fixes the association.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding the key field - if you want to merge your Quarter field into the primary table rather than using a key, simply prefix your inline load with an OUTER JOIN statement (or RIGHT JOIN, which would work equally well in your case). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do agree with vicky, though - it is best to have a master calendar table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Aug 2011 11:09:53 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2011-08-17T11:09:53Z</dc:date>
    <item>
      <title>adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277694#M1192056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an Excel sheet with two month. However I want to add all the month's of the year and link them to quarters. (there are no Quaters in the source file)&lt;/P&gt;&lt;P&gt;So i've created an Inline in Qlikview to load extra month's and quarters. However when I reload and open the Month field, I see that jun and jul are double (one from the source and one from the calander table (that I created) in Qlikview. Futhermore the data is not linked. So if I click on jun I should see the Q3. However this is not the case. Plus Qlikview now sees "month" as a keyfield. That's not something I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I solve the above? Should I join the field "month" from CIS table with the one I created (the calander table)? If so, how can I do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you help!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 07:52:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277694#M1192056</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-17T07:52:42Z</dc:date>
    </item>
    <item>
      <title>adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277695#M1192057</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 to solve it with an general calender.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET varMin = Num('01/01/2008');&lt;/P&gt;&lt;P&gt;LET varMax = Num('31/12/2011');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date:&lt;/P&gt;&lt;P&gt;LOAD date($(varMin) + rowno() - 1) AS tempdate&lt;/P&gt;&lt;P&gt;AUTOGENERATE $(varMax) - $(varMin) + 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;calender:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;tempdate AS date,&lt;/P&gt;&lt;P&gt;DAY(tempdate) AS day,&lt;/P&gt;&lt;P&gt;WEEK(tempdate) AS week,&lt;/P&gt;&lt;P&gt;MONTH(tempdate) AS month,&lt;/P&gt;&lt;P&gt;YEAR(tempdate) AS year,&lt;/P&gt;&lt;P&gt;'Q'&amp;amp;CEIL(MONTH(tempdate) / 3) AS quarter&lt;/P&gt;&lt;P&gt;RESIDENT date;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE date;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then your month-field from the excel sheet should have the same name like in calender.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vicky&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #808080; font-size: 8pt;"&gt;&lt;EM style="color: #808080; font-size: 8pt;"&gt; &lt;/EM&gt;&lt;/EM&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #808080; font-size: 8pt;"&gt;&lt;EM style="color: #808080; font-size: 8pt;"&gt; &lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 09:18:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277695#M1192057</guid>
      <dc:creator />
      <dc:date>2011-08-17T09:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277696#M1192058</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately it doesn’t work. I get the following error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script line error: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD date( + rowno() - 1) as tempdate &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUTOGENERATE&amp;nbsp; -&amp;nbsp; + 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table not found&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calender:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tempdate AS date,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DAY(tempdate) AS day,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WEEK(tempdate) AS week,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MONTH(tempdate) AS month,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YEAR(tempdate) AS year,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Q'&amp;amp; CEIL(MONTH(tempdate) / 3) AS quarter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESIDENT Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aissam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 10:49:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277696#M1192058</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-17T10:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277697#M1192059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regarding the lack of association - one of your month fields appears to be inserting spaces. When using Trim() on the month name, I see the correct association, but when using the Month field as-is, I do not. Try running Trim() on the month name you are deriving and see if that fixes the association.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding the key field - if you want to merge your Quarter field into the primary table rather than using a key, simply prefix your inline load with an OUTER JOIN statement (or RIGHT JOIN, which would work equally well in your case). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do agree with vicky, though - it is best to have a master calendar table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 11:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277697#M1192059</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2011-08-17T11:09:53Z</dc:date>
    </item>
    <item>
      <title>adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277698#M1192060</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 change the dates into your format. I have not look at this, sry. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET varMin = Num('1-1-2010')&lt;/P&gt;&lt;P&gt;LET varMax = Num('31-12-2011')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the generation works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RowNo() is a function that counts the lines in the internal table. But this functions begins with line 1, not with 0. &lt;/P&gt;&lt;P&gt;So Qv is able to generate every day between the minimal date and the maximal date. More information to that function you get in the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;vicky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 11:11:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277698#M1192060</guid>
      <dc:creator />
      <dc:date>2011-08-17T11:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277699#M1192061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!! The masterCalander now works. But there is no link between the dates of the CIS table and the Calander table &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;. When I click on jul I don't see the results of jul. Can I solve this problem by doing a "outer join"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 11:35:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277699#M1192061</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-17T11:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277700#M1192062</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;Add in you table the line: Date(Date#(DEP, 'DD-MM-YYYY') 'DD-MM-YYYY') AS Date.&lt;/P&gt;&lt;P&gt;That is the linking. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you have to rename the Month, ect because you get synthectic keys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vicky&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 12:26:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277700#M1192062</guid>
      <dc:creator />
      <dc:date>2011-08-17T12:26:43Z</dc:date>
    </item>
    <item>
      <title>adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277701#M1192063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Vicky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've added the date line. But that didn't solve the problem. When I click on June, all the results dispear. &lt;/P&gt;&lt;P&gt;I just added an extra row in the source file (Excel) to load the Quarters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iSam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2011 13:07:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277701#M1192063</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-18T13:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277702#M1192064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vicky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've added the date line. But that didn't solve the problem. When I click on June, all the results dispear. &lt;/P&gt;&lt;P&gt;I just added an extra row in the source file (Excel) to load the Quarters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iSam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2011 13:08:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277702#M1192064</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-18T13:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: adding extra month's in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277703#M1192065</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;That was interesting Post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any suggest me how to create Month end for all Months such that there will be only one dimension Month field and one measure Sales.&lt;/P&gt;&lt;P&gt;Totally we need to get 24 bars(If we show that in bar chart)like&lt;/P&gt;&lt;P&gt;Jan Month end,Feb Month end...Dec, Month end&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 12:02:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/adding-extra-month-s-in-Qlikview/m-p/277703#M1192065</guid>
      <dc:creator />
      <dc:date>2014-05-28T12:02:49Z</dc:date>
    </item>
  </channel>
</rss>

