<?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: Skip 0 values before making the calculated dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228535#M868940</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All right,so please mark it as corrent answer,thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Nov 2016 10:23:09 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-11-25T10:23:09Z</dc:date>
    <item>
      <title>Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228521#M868921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp; have the following calculated dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=aggr(if(rank(sum(sales),4)&amp;lt;0.1*count(total distinct customer), '0-10%',&lt;/P&gt;&lt;P&gt;if(rank(sum(sales),4)&amp;lt;0.2*count(total distinct customer), '10-20%',&lt;/P&gt;&lt;P&gt;if(rank(sum(sales),4)&amp;lt;0.3*count(total distinct customer), '20-30%',&lt;/P&gt;&lt;P&gt;if(rank(sum(sales),4)&amp;lt;0.4*count(total distinct customer), '30-40%',&lt;/P&gt;&lt;P&gt;if(rank(sum(sales),4)&amp;lt;0.5*count(total distinct customer), '40-50%',&lt;/P&gt;&lt;P&gt;if(rank(sum(sales),4)&amp;lt;0.6*count(total distinct customer), '50-60%',&lt;/P&gt;&lt;P&gt;if(rank(sum(sales),4)&amp;lt;0.7*count(total distinct customer), '60-70%',&lt;/P&gt;&lt;P&gt;if(rank(sum(sales),4)&amp;lt;0.8*count(total distinct customer), '70-80%',&lt;/P&gt;&lt;P&gt;if(rank(sum(sales),4)&amp;lt;0.9*count(total distinct customer), '80-90%'&lt;/P&gt;&lt;P&gt;, '90-100%'))))))))),customer).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Rows with 0 value, however i need them for the qwd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;¿it is posible to eliminate the values with sum 0?&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/Skip-0-values-before-making-the-calculated-dimension/m-p/1228521#M868921</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228522#M868922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could add another if I guess.&lt;/P&gt;&lt;P&gt;But why don't you use the class function?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 08:40:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228522#M868922</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2016-11-25T08:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228523#M868923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i tried it i could not do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can help me&amp;nbsp; i would appreciate it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 08:44:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228523#M868923</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-25T08:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228524#M868924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=if(sum(sales)=0, null(),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;aggr(if(rank(sum(sales),4)&amp;lt;0.1*count(total distinct customer), '0-10%',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(rank(sum(sales),4)&amp;lt;0.2*count(total distinct customer), '10-20%',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(rank(sum(sales),4)&amp;lt;0.3*count(total distinct customer), '20-30%',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(rank(sum(sales),4)&amp;lt;0.4*count(total distinct customer), '30-40%',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(rank(sum(sales),4)&amp;lt;0.5*count(total distinct customer), '40-50%',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(rank(sum(sales),4)&amp;lt;0.6*count(total distinct customer), '50-60%',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(rank(sum(sales),4)&amp;lt;0.7*count(total distinct customer), '60-70%',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(rank(sum(sales),4)&amp;lt;0.8*count(total distinct customer), '70-80%',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(rank(sum(sales),4)&amp;lt;0.9*count(total distinct customer), '80-90%'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;, '90-100%'))))))))),customer)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;and check suppress when value is null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 08:59:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228524#M868924</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2016-11-25T08:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228525#M868925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It gives me Allocated memory exceded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 09:05:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228525#M868925</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-25T09:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228526#M868926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not know what i have touched but with the formula you game me it gives this table&lt;IMG alt="pareto.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/144839_pareto.JPG" style="height: auto;" /&gt; &lt;/P&gt;&lt;P&gt;As you can see from 40% to 90% have dissapeared, however i would like to have the formula only with data not 0 and null so it doesn´t dissapeare those 'ranges'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 09:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228526#M868926</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-25T09:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228527#M868927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my mistake, replace &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;sum(sales) to aggr(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;sum(sales), customer)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I really suggest that you use class&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 09:34:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228527#M868927</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2016-11-25T09:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228528#M868928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where should it be that customer? it is giving problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how could it be done this with class?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class(client,10)?? i do not understand this function &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 09:39:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228528#M868928</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-25T09:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228529#M868929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post a sample app&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 09:45:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228529#M868929</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2016-11-25T09:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228530#M868932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;STRONG&gt;=Replace(Aggr(Class(Sum(Sales)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;&lt;STRONG&gt;*100, 10), customer), '&amp;lt;= x &amp;lt;', ' - ')&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 09:47:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228530#M868932</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-11-25T09:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228531#M868936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on the excel ist shows the data what i would like to have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 09:58:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228531#M868936</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-25T09:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228532#M868937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, doing your dimension expression it gives me a lot of classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could it be done so i have from 0-10%, 10 to 20% and so on?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 10:00:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228532#M868937</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-25T10:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228533#M868938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=aggr(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}sales),4)&amp;lt;0.1*count({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}total distinct customer), '0-10%',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}sales),4)&amp;lt;0.2*count({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}total distinct customer), '10-20%',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}sales),4)&amp;lt;0.3*count({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}total distinct customer), '20-30%',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}sales),4)&amp;lt;0.4*count({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}total distinct customer), '30-40%',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}sales),4)&amp;lt;0.5*count({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}total distinct customer), '40-50%',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}sales),4)&amp;lt;0.6*count({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}total distinct customer), '50-60%',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}sales),4)&amp;lt;0.7*count({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}total distinct customer), '60-70%',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}sales),4)&amp;lt;0.8*count({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}total distinct customer), '70-80%',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}sales),4)&amp;lt;0.9*count({&amp;lt;customer-={"=sum(sales)=0"}&amp;gt;}total distinct customer), '80-90%'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,'90-100%')))))))))&lt;/P&gt;&lt;P&gt;,customer&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 10:00:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228533#M868938</guid>
      <dc:creator />
      <dc:date>2016-11-25T10:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228534#M868939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you xmg it worked!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you to all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 10:08:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228534#M868939</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-25T10:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Skip 0 values before making the calculated dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228535#M868940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All right,so please mark it as corrent answer,thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 10:23:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Skip-0-values-before-making-the-calculated-dimension/m-p/1228535#M868940</guid>
      <dc:creator />
      <dc:date>2016-11-25T10:23:09Z</dc:date>
    </item>
  </channel>
</rss>

