<?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: Set analysis, ignore dimension in table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106791#M90383</link>
    <description>&lt;P&gt;i have tried the above function ,but still in straight table ,it shows different output.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lakshmanan_0-1692280011795.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/114643iB0C2445C8038007F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Lakshmanan_0-1692280011795.png" alt="Lakshmanan_0-1692280011795.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Aug 2023 13:47:09 GMT</pubDate>
    <dc:creator>Lakshmanan</dc:creator>
    <dc:date>2023-08-17T13:47:09Z</dc:date>
    <item>
      <title>Set analysis, ignore dimension in table</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106721#M90373</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have a table like this (simplified):&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="25%" height="25px"&gt;Category&lt;/TD&gt;
&lt;TD width="25%" height="25px"&gt;System Type&lt;/TD&gt;
&lt;TD width="6.25%" height="25px"&gt;QTY&lt;/TD&gt;
&lt;TD width="6.25%" height="25px"&gt;Calculation&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%" height="25px"&gt;C1&lt;/TD&gt;
&lt;TD width="25%" height="25px"&gt;TypeA1&lt;/TD&gt;
&lt;TD width="6.25%" height="25px"&gt;9000&lt;/TD&gt;
&lt;TD width="6.25%" height="25px"&gt;9000&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%" height="25px"&gt;C1&lt;/TD&gt;
&lt;TD width="25%" height="25px"&gt;TypeA2&lt;/TD&gt;
&lt;TD width="6.25%" height="25px"&gt;25000&lt;/TD&gt;
&lt;TD width="6.25%" height="25px"&gt;&amp;lt;25000 - 9000&amp;gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%" height="25px"&gt;C1&lt;/TD&gt;
&lt;TD width="25%" height="25px"&gt;TypeB&lt;/TD&gt;
&lt;TD width="6.25%" height="25px"&gt;1200&lt;/TD&gt;
&lt;TD width="6.25%" height="25px"&gt;1200&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For certain System Types I need to subtract the quantity of a different system type to get the correct Calculation value.&lt;/P&gt;
&lt;P&gt;The measure I tried is:&lt;BR /&gt;SUM({$&amp;lt;CATEGORY={'C1'}, SYSTEM_TYPE={'TypeA2'}&amp;gt;} QTY) -&amp;nbsp;SUM({$&amp;lt;CATEGORY={'C1'}, SYSTEM_TYPE={'TypeA1'}&amp;gt;} QTY)&lt;BR /&gt;&lt;BR /&gt;but this returns 25000 for type A2 instead of 25000-9000.&lt;BR /&gt;How can I edit the measure so it shows the correct value?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 12:06:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106721#M90373</guid>
      <dc:creator>AnnieV</dc:creator>
      <dc:date>2023-08-17T12:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis, ignore dimension in table</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106746#M90376</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your expression will give correct result on KPI chart . You should handle this subtraction at the backend in script using peek or if statements or variable.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H6&gt;&lt;BR /&gt;&lt;EM&gt;Please mark as Closed if it resolved the issue.&lt;/EM&gt;&lt;/H6&gt;</description>
      <pubDate>Thu, 17 Aug 2023 12:47:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106746#M90376</guid>
      <dc:creator>Lakshmanan</dc:creator>
      <dc:date>2023-08-17T12:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis, ignore dimension in table</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106780#M90381</link>
      <description>&lt;P&gt;Seems like you should be using Above() for this.&lt;/P&gt;
&lt;P&gt;QTY - if(System = 'A1',Above(QTY),0)&lt;/P&gt;
&lt;P&gt;Working in whatever conditions you need.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 13:31:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106780#M90381</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2023-08-17T13:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis, ignore dimension in table</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106791#M90383</link>
      <description>&lt;P&gt;i have tried the above function ,but still in straight table ,it shows different output.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lakshmanan_0-1692280011795.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/114643iB0C2445C8038007F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Lakshmanan_0-1692280011795.png" alt="Lakshmanan_0-1692280011795.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 13:47:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106791#M90383</guid>
      <dc:creator>Lakshmanan</dc:creator>
      <dc:date>2023-08-17T13:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis, ignore dimension in table</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106796#M90384</link>
      <description>&lt;P&gt;I'm not sure what that table is meant to show, exactly, but the Above() formula in the rightmost column doesn't make sense. It seems to only apply Above() to the ID in the first row, and for the first row, there is no Above() because it's, well, first.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 13:55:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-dimension-in-table/m-p/2106796#M90384</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2023-08-17T13:55:22Z</dc:date>
    </item>
  </channel>
</rss>

