<?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 exclude nulls on table chart in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/exclude-nulls-on-table-chart/m-p/1234353#M24211</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried these following ways to show in a table chart on a qlik sense sheet only the CustomerIDs that have null for Department_Catering&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Count({&amp;lt;Department_Catering= {"=Len(Trim(Department_Catering)) &amp;gt; 0"}&amp;gt;}CustomerID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this above gives the answer to all that has a Department_Catering, but I want the ones that do not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;Department_Catering -= {"=Len(Trim(Department_Catering)) &amp;gt; 0"}&amp;gt;}CustomerID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get no records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Feb 2017 10:16:55 GMT</pubDate>
    <dc:creator>joeybird</dc:creator>
    <dc:date>2017-02-21T10:16:55Z</dc:date>
    <item>
      <title>exclude nulls on table chart</title>
      <link>https://community.qlik.com/t5/App-Development/exclude-nulls-on-table-chart/m-p/1234353#M24211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried these following ways to show in a table chart on a qlik sense sheet only the CustomerIDs that have null for Department_Catering&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Count({&amp;lt;Department_Catering= {"=Len(Trim(Department_Catering)) &amp;gt; 0"}&amp;gt;}CustomerID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this above gives the answer to all that has a Department_Catering, but I want the ones that do not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;Department_Catering -= {"=Len(Trim(Department_Catering)) &amp;gt; 0"}&amp;gt;}CustomerID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get no records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 10:16:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/exclude-nulls-on-table-chart/m-p/1234353#M24211</guid>
      <dc:creator>joeybird</dc:creator>
      <dc:date>2017-02-21T10:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: exclude nulls on table chart</title>
      <link>https://community.qlik.com/t5/App-Development/exclude-nulls-on-table-chart/m-p/1234354#M24212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Count({&amp;lt;&lt;SPAN style="color: #ff0000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;CustomerID&lt;/SPAN&gt; = {"=Len(Trim(Department_Catering)) &lt;SPAN style="color: #ff0000;"&gt;=&lt;/SPAN&gt; 0"}&amp;gt;}CustomerID)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 10:20:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/exclude-nulls-on-table-chart/m-p/1234354#M24212</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-21T10:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: exclude nulls on table chart</title>
      <link>https://community.qlik.com/t5/App-Development/exclude-nulls-on-table-chart/m-p/1234355#M24213</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;this brings back all CustomerID, giving a 1 to all the null records for Department_Catering and 0 to the others&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do I limit the records shown in the table to just the ones with the 1 count please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 10:29:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/exclude-nulls-on-table-chart/m-p/1234355#M24213</guid>
      <dc:creator>joeybird</dc:creator>
      <dc:date>2017-02-21T10:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: exclude nulls on table chart</title>
      <link>https://community.qlik.com/t5/App-Development/exclude-nulls-on-table-chart/m-p/1234356#M24214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Uncheck 'Show Zero Values under Add-Ons -&amp;gt; Data handling&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/153893_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 10:32:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/exclude-nulls-on-table-chart/m-p/1234356#M24214</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-21T10:32:17Z</dc:date>
    </item>
  </channel>
</rss>

