<?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: need help regarding the dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841327#M295664</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please post a sample application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 07 Jun 2015 08:35:53 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2015-06-07T08:35:53Z</dc:date>
    <item>
      <title>need help regarding the dimension</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841321#M295658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I have a situation that , i have created the year_Month field but some of the data is not coming for some month , suppose for Nov-2014 , there is no data in my source , and no month selected when that iD is selected in the listbox ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if i want to show the month in dimension , how can i do it .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 06:52:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841321#M295658</guid>
      <dc:creator>agni_gold</dc:creator>
      <dc:date>2015-06-07T06:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: need help regarding the dimension</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841322#M295659</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;Create a master calendar and link that with your data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 06:54:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841322#M295659</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2015-06-07T06:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: need help regarding the dimension</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841323#M295660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created and linked , but for NOV-2014 there is no source data , therefore NOV-2014 is not showing in dimension . But I just want to show the 0 value for these type of records . Don't want to miss the months in dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 07:38:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841323#M295660</guid>
      <dc:creator>agni_gold</dc:creator>
      <dc:date>2015-06-07T07:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: need help regarding the dimension</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841324#M295661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do not create master calendar using the same field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a master calendar using the min and max date and then link that to your data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample Master Cal script is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vMin = num(makedate(2015,01,01));&lt;/P&gt;&lt;P&gt;Let vMax = num(today());&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load Date($(vMin) + rowno() -1) as Date&lt;/P&gt;&lt;P&gt;Autogenerate 1&lt;/P&gt;&lt;P&gt;While Date($(vMin) + rowno() -1) &amp;lt; Date($(vMax));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MatserCal:&lt;/P&gt;&lt;P&gt;Load Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(Date) as Year&lt;/P&gt;&lt;P&gt;Resident Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 07:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841324#M295661</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2015-06-07T07:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: need help regarding the dimension</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841325#M295662</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 uncheck "suppress zero-values" and/or "suppress missing" on the presentation tab of the chart properties.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 08:20:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841325#M295662</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-07T08:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: need help regarding the dimension</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841326#M295663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no it is not working &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 08:27:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841326#M295663</guid>
      <dc:creator>agni_gold</dc:creator>
      <dc:date>2015-06-07T08:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: need help regarding the dimension</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841327#M295664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please post a sample application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 08:35:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841327#M295664</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-07T08:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: need help regarding the dimension</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841328#M295665</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;one example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_167267_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/88606_QlikCommunity_Thread_167267_Pic1.JPG" style="height: 464px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_167267_Pic2.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/88607_QlikCommunity_Thread_167267_Pic2.JPG" style="height: 543px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14336930385424574" jivemacro_uid="_14336930385424574"&gt;
&lt;P&gt;tabData:&lt;/P&gt;
&lt;P&gt;LOAD Date#(year_Month,'MMM-YYYY') as year_Month,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value&lt;/P&gt;
&lt;P&gt;INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; year_Month, Value&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Jan-2014, 10&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Feb-2014, 20&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Apr-2014, 30&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Jun-2014, 40&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Jul-2014, 50&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sep-2014, 60&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Oct-2014, 70&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dec-2014, 80&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;tabMonthCalendar:&lt;/P&gt;
&lt;P&gt;LOAD Date(AddMonths(MakeDate(2014),RecNo()-1),'MMM-YYYY') as year_Month&lt;/P&gt;
&lt;P&gt;AutoGenerate 12;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 16:04:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841328#M295665</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-07T16:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: need help regarding the dimension</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841329#M295666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i tried that also, but it is also not working for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 06:14:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-regarding-the-dimension/m-p/841329#M295666</guid>
      <dc:creator>agni_gold</dc:creator>
      <dc:date>2015-06-08T06:14:48Z</dc:date>
    </item>
  </channel>
</rss>

