<?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: Block 0 value lines? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19830#M1322</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for you reply, this worked great &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Feb 2018 16:18:49 GMT</pubDate>
    <dc:creator>stephenhasson</dc:creator>
    <dc:date>2018-02-14T16:18:49Z</dc:date>
    <item>
      <title>Block 0 value lines?</title>
      <link>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19826#M1318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="abc.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/193300_abc.JPG" style="height: 129px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In above chart, I want to remove lines where there is no delta in qty. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Detla qty is&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;=sum(OurReqQty)-sum(Open_Order_Quantity__c)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried this&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if( sum({1}OurReqQty)-Sum({1}Open_Order_Quantity__c)=0,0,sum(OurReqQty)-Sum(Open_Order_Quantity__c))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;and switched off 'show zero values' in Add-ons, but didn't work. A similiar approach worked on another app recently, but not this time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help appreciated. thanks. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 18:00:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19826#M1318</guid>
      <dc:creator>stephenhasson</dc:creator>
      <dc:date>2018-02-13T18:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Block 0 value lines?</title>
      <link>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19827#M1319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any other measure with non zero values, I think it only switches off zero values when all measures in a row produces 0 values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 23:50:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19827#M1319</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2018-02-13T23:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: Block 0 value lines?</title>
      <link>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19828#M1320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;You will need to wrap all the expressions in this chart in If statements like this:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if( sum(OurReqQty)-Sum(Open_Order_Quantity__c)=0,0,sum(OurReqQty)-Sum(Open_Order_Quantity__c))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if( sum(OurReqQty)-Sum(Open_Order_Quantity__c)=0,0,sum(EpicorValue))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I don't think the set analysis expression is needed in the If condition - if( sum( {1} ...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Without it, the If condition will use the same set of data that the rest of the expression does, so each row shows or hides as it should.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I hope that helps.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2018 03:15:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19828#M1320</guid>
      <dc:creator>john_obrien</dc:creator>
      <dc:date>2018-02-14T03:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Block 0 value lines?</title>
      <link>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19829#M1321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for you reply, now resolved, as I removed the other columns. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2018 16:18:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19829#M1321</guid>
      <dc:creator>stephenhasson</dc:creator>
      <dc:date>2018-02-14T16:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Block 0 value lines?</title>
      <link>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19830#M1322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for you reply, this worked great &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2018 16:18:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Block-0-value-lines/m-p/19830#M1322</guid>
      <dc:creator>stephenhasson</dc:creator>
      <dc:date>2018-02-14T16:18:49Z</dc:date>
    </item>
  </channel>
</rss>

