<?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 Adjustment for the specific product in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2533845#M108299</link>
    <description>&lt;P&gt;Have you tried this:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sum ({&amp;lt;Product -= {‘B’, ‘C’}&amp;gt;} Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This tells Qlik Sense to sum sales for products that are not B or C - in your example, that would be sales for product A only.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Oct 2025 12:17:03 GMT</pubDate>
    <dc:creator>howdash</dc:creator>
    <dc:date>2025-10-20T12:17:03Z</dc:date>
    <item>
      <title>Set Analysis Adjustment for the specific product</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2532699#M108130</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have Sales by Products.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;Product, Sales&lt;/P&gt;&lt;P&gt;A, 1&lt;/P&gt;&lt;P&gt;B, 2&lt;/P&gt;&lt;P&gt;C, 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wrote set analysis with Sum of Sales for the Product A&lt;/P&gt;&lt;P&gt;=Sum ({&amp;lt;Product = {A}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Now,&lt;/STRONG&gt; set analysis shows me the Sales of Product A when Product A selected or there is no selection for the Product.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Problem&lt;/STRONG&gt; is when I select the Product B or C then I don't see anything in the set analysis it shows me -.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Object&lt;/STRONG&gt; is to show the Sum of Sales for the Product A whether the Product A selected or not also show me the sales for the Product A even Product B or C selected. I mean I don't want to include Product B or C in any case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 07:46:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2532699#M108130</guid>
      <dc:creator>profilejamesbond</dc:creator>
      <dc:date>2025-10-07T07:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Adjustment for the specific product</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2532702#M108131</link>
      <description>&lt;P&gt;If your data model and expression is as you describe then&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;Sum ({&amp;lt;Product = {A}&amp;gt;} Sales)&lt;/FONT&gt;&amp;nbsp;should be enough, but if you are making selections in any other field then that will effect your measure.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you&amp;nbsp; set analysis is done on product_id, but your users filter on Product then the - will appear.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;Sum ({&amp;lt;product_id = {A}&amp;gt;} Sales)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;User&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;filters on &lt;FONT face="courier new,courier"&gt;Product=B&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;The output will be null because a filter on product_id=A and Product=B give no result&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;If possible change either the set expression or the filter given to the users. Or clear out the user filter in the modifier like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;Sum ({&amp;lt;Product=, product_id = {A}&amp;gt;} Sales)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 07:56:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2532702#M108131</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-10-07T07:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Adjustment for the specific product</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2532703#M108132</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/25001"&gt;@Vegar&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;There is no parent category. Just as simple as it is.&lt;/P&gt;&lt;P&gt;But, how to write an expression where I would like to say just select this product and whatever the selection is inside the same dimension just ignore it.&lt;/P&gt;&lt;P&gt;I tried these modifiers but no luck:&lt;/P&gt;&lt;P&gt;Product = {'A'}, Product =&lt;/P&gt;&lt;P&gt;Product = {'A'}, Product -= {'B', 'C'}&lt;/P&gt;&lt;P&gt;Product = {'A'}, Product = e(Product)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 08:07:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2532703#M108132</guid>
      <dc:creator>profilejamesbond</dc:creator>
      <dc:date>2025-10-07T08:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Adjustment for the specific product</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2533168#M108180</link>
      <description>&lt;P&gt;It seems like you are leaving out some details in your explanation.&lt;/P&gt;&lt;P&gt;If you have the data as scripted below&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;product_sales_data:
LOAD * inline [
   Product, Sales
   A,       1
   B,       2
   C,       3
];&lt;/LI-CODE&gt;&lt;P&gt;Then the expression sum({&amp;lt;Product = {'A'}&amp;gt;}Sales) should ignore any selections made to the Product dimension. See screenshot below - I've made a selection to Product = B, but that expression still calculates only for the A product despite the selection.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Vegar_0-1760130350044.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184187iB7A9A35EC5FBABCF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Vegar_0-1760130350044.png" alt="Vegar_0-1760130350044.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Oct 2025 21:07:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2533168#M108180</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-10-10T21:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Adjustment for the specific product</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2533845#M108299</link>
      <description>&lt;P&gt;Have you tried this:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sum ({&amp;lt;Product -= {‘B’, ‘C’}&amp;gt;} Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This tells Qlik Sense to sum sales for products that are not B or C - in your example, that would be sales for product A only.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2025 12:17:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Adjustment-for-the-specific-product/m-p/2533845#M108299</guid>
      <dc:creator>howdash</dc:creator>
      <dc:date>2025-10-20T12:17:03Z</dc:date>
    </item>
  </channel>
</rss>

