<?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: Ignore NULL values on chart in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432272#M34395</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created an Employee dimension in Master Items with the following expression in the Field: Aggr(If($(vMetric)&amp;gt;=0,EmployeeName),EmployeeName).&amp;nbsp; This formula says if the metric is not null then return the employee.&amp;nbsp; Essentially, it gives me a dimension with the employees that have the metric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I put this Master Item dimension in the dimension of my chart.&amp;nbsp; So far, it seems be working (only showing operators who have data in the chart).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Dec 2017 20:22:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-12-05T20:22:48Z</dc:date>
    <item>
      <title>Ignore NULL values on chart</title>
      <link>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432268#M34391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I exclude dimension values that have a NULL measure?&amp;nbsp; For example, in my bar chart I have employees that do not have data (so their measure value is NULL), but they are still showing up on my chart.&amp;nbsp; How do I remove them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I remove the check from "Include zero values" from the Data Handling menu not only does it remove dimensions with a NULL measure it also removes dimensions with a value of zero.&amp;nbsp; I want to keep the zero values, but get rid of the NULL values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 16:54:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432268#M34391</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-05T16:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore NULL values on chart</title>
      <link>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432269#M34392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be make 0 to be 0.00000001 something like this&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Avg(Measure) = 0, 0.00000001, Sum(Measure))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when you will uncheck 'Include zero values', 0s will stay as they are 0.00000001 now rather than 0s&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 17:11:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432269#M34392</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-12-05T17:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore NULL values on chart</title>
      <link>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432270#M34393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd rather not have a work around solution.&amp;nbsp; Especially since there is the ability to export data.&amp;nbsp; I don't want to show &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;0.00000001 when the number ahould be 0.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 17:38:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432270#M34393</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-05T17:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore NULL values on chart</title>
      <link>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432271#M34394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The other option is to calculated dimension.... I can't think of a 3rd way to do this &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 17:52:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432271#M34394</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-12-05T17:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore NULL values on chart</title>
      <link>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432272#M34395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created an Employee dimension in Master Items with the following expression in the Field: Aggr(If($(vMetric)&amp;gt;=0,EmployeeName),EmployeeName).&amp;nbsp; This formula says if the metric is not null then return the employee.&amp;nbsp; Essentially, it gives me a dimension with the employees that have the metric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I put this Master Item dimension in the dimension of my chart.&amp;nbsp; So far, it seems be working (only showing operators who have data in the chart).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 20:22:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432272#M34395</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-05T20:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore NULL values on chart</title>
      <link>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432273#M34396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is a calculated dimension &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 20:48:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Ignore-NULL-values-on-chart/m-p/1432273#M34396</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-12-05T20:48:19Z</dc:date>
    </item>
  </channel>
</rss>

