<?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: Hide records with KPI = 0 in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699345#M53555</link>
    <description>&lt;P&gt;Thanks for your reply!&lt;/P&gt;&lt;P&gt;If I try this I still see the documents with KPI1 &amp;lt;&amp;gt;0 and the ones with KPI1=0...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 06 May 2020 10:05:54 GMT</pubDate>
    <dc:creator>jorditorras</dc:creator>
    <dc:date>2020-05-06T10:05:54Z</dc:date>
    <item>
      <title>Hide records with KPI = 0</title>
      <link>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699326#M53546</link>
      <description>&lt;P&gt;Dear Gurús,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm developing an App in QlikSense where I've created a straight table with "Document number" as Dimensions and KPI1, KPI2 and KPI3.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to hide all the "Document numbers" with the KPI1 = 0 (even when KPI2 or KPI3 has some values).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea how can I do this??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 21:08:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699326#M53546</guid>
      <dc:creator>jorditorras</dc:creator>
      <dc:date>2021-12-20T21:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Hide records with KPI = 0</title>
      <link>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699332#M53548</link>
      <description>&lt;P&gt;Try this in Dimension instead of &lt;SPAN&gt;"Document number"&amp;nbsp;&lt;/SPAN&gt;then hide null value,&lt;/P&gt;&lt;P&gt;if(aggr(sum(&lt;SPAN&gt;KPI1&lt;/SPAN&gt;),&lt;SPAN&gt;[Document number]&amp;nbsp;&lt;/SPAN&gt;,&lt;SPAN&gt;KPI1&lt;/SPAN&gt;)&amp;gt;0,&lt;SPAN&gt;[Document number]&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;,null())&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 09:22:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699332#M53548</guid>
      <dc:creator>IamAlbinAntony</dc:creator>
      <dc:date>2020-05-06T09:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Hide records with KPI = 0</title>
      <link>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699339#M53553</link>
      <description>&lt;P&gt;Many thanks for your reply, but it's not working... There's a message error of "Invalid Dimension"...&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 09:47:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699339#M53553</guid>
      <dc:creator>jorditorras</dc:creator>
      <dc:date>2020-05-06T09:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Hide records with KPI = 0</title>
      <link>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699340#M53554</link>
      <description>&lt;P&gt;try replacing your dimension with:&lt;/P&gt;&lt;P&gt;=aggr( if( sum(KPI1) &amp;lt;&amp;gt; 0, [Document number], null() ), [Document number] )&lt;/P&gt;&lt;P&gt;and untick "Include null values".&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 09:48:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699340#M53554</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2020-05-06T09:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Hide records with KPI = 0</title>
      <link>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699345#M53555</link>
      <description>&lt;P&gt;Thanks for your reply!&lt;/P&gt;&lt;P&gt;If I try this I still see the documents with KPI1 &amp;lt;&amp;gt;0 and the ones with KPI1=0...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 10:05:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699345#M53555</guid>
      <dc:creator>jorditorras</dc:creator>
      <dc:date>2020-05-06T10:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Hide records with KPI = 0</title>
      <link>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699347#M53556</link>
      <description>&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=aggr( if( sum(KPI1) &amp;gt; 0, [Document number], null() ), [Document number] )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and remember to&amp;nbsp; untick "Include null values".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;what you get?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;it the above doesn't works try this one:&lt;BR /&gt;=aggr( if( sum(&lt;STRONG&gt;alt(&lt;/STRONG&gt;KPI1,0&lt;STRONG&gt;)&lt;/STRONG&gt;) &amp;lt;&amp;gt; 0, [Document number], null() ), [Document number] )&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 10:23:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hide-records-with-KPI-0/m-p/1699347#M53556</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2020-05-06T10:23:29Z</dc:date>
    </item>
  </channel>
</rss>

