<?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: Exclude 0 and -1 from a chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660470#M542235</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(dimension_name&amp;lt;&amp;gt;'-1' and dimensionn_name&amp;lt;&amp;gt;'0' , dimension_name,0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jun 2014 10:09:08 GMT</pubDate>
    <dc:creator>sasikanth</dc:creator>
    <dc:date>2014-06-26T10:09:08Z</dc:date>
    <item>
      <title>Exclude 0 and -1 from a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660468#M542233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I have a graph with several expressions made with sets analysis. Their aims is to display a percent of type of lines compare to the rest of the other lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is that I obtain values "-1" and "0" in my dimension. These values doesn't exists at origin in my table.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="forum.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/61250_forum.png" style="width: 620px; height: 194px;" /&gt;&lt;/P&gt;&lt;P&gt;Do you know how I can hide these -1 and 0 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you ! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 10:07:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660468#M542233</guid>
      <dc:creator />
      <dc:date>2014-06-26T10:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude 0 and -1 from a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660469#M542234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if your expression is something like MYEXPR then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(MYEXPR&amp;nbsp; &amp;lt;= 0, null(), MYEXPR )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 10:08:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660469#M542234</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-06-26T10:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude 0 and -1 from a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660470#M542235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(dimension_name&amp;lt;&amp;gt;'-1' and dimensionn_name&amp;lt;&amp;gt;'0' , dimension_name,0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 10:09:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660470#M542235</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2014-06-26T10:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude 0 and -1 from a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660471#M542236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(column(1)&amp;lt; 0, null(), column(1))&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;here column(1)----&amp;gt; denotes first expression you can use column(N)--&amp;gt;n=1,2,3.......&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;and&amp;nbsp; go to chart -&amp;gt; properties-&amp;gt; presentation-&amp;gt; supress zero value&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;hope this helps&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 10:11:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660471#M542236</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2014-06-26T10:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude 0 and -1 from a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660472#M542237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please share your qvw to better explain what you want to achieve?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 10:11:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660472#M542237</guid>
      <dc:creator />
      <dc:date>2014-06-26T10:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude 0 and -1 from a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660473#M542238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can also&amp;nbsp; do below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to excess and in static min write 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 10:16:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660473#M542238</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2014-06-26T10:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude 0 and -1 from a chart</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660474#M542239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your responses ! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 11:28:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-0-and-1-from-a-chart/m-p/660474#M542239</guid>
      <dc:creator />
      <dc:date>2014-06-26T11:28:15Z</dc:date>
    </item>
  </channel>
</rss>

