<?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 SET ANALYSIS in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160703#M94155</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;I wrote this expression to count the customers who have a value greater than 100 for the KI sector&lt;/P&gt;
&lt;P&gt;Count( {$&amp;lt;FATT_VEN_AC={"&amp;gt;=100"}, FT_SECTOR={"KI"}&amp;gt;} AC_COD_RS)&lt;/P&gt;
&lt;P&gt;but the results it provides concern customers who have a value other than 0.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The FATT_VEN_AC measure is defined in master item with the following definition&lt;BR /&gt;Sum ( {$&amp;lt; YEAR ={$(=CURRENT_YEAR)}&amp;gt; } FT_AMOUNT)&lt;/P&gt;
&lt;P&gt;and AC_COD_RS is the customer code.&lt;/P&gt;
&lt;P&gt;can anyone help me?&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2024 17:10:21 GMT</pubDate>
    <dc:creator>Tmassimo</dc:creator>
    <dc:date>2024-01-11T17:10:21Z</dc:date>
    <item>
      <title>SET ANALYSIS</title>
      <link>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160703#M94155</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I wrote this expression to count the customers who have a value greater than 100 for the KI sector&lt;/P&gt;
&lt;P&gt;Count( {$&amp;lt;FATT_VEN_AC={"&amp;gt;=100"}, FT_SECTOR={"KI"}&amp;gt;} AC_COD_RS)&lt;/P&gt;
&lt;P&gt;but the results it provides concern customers who have a value other than 0.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The FATT_VEN_AC measure is defined in master item with the following definition&lt;BR /&gt;Sum ( {$&amp;lt; YEAR ={$(=CURRENT_YEAR)}&amp;gt; } FT_AMOUNT)&lt;/P&gt;
&lt;P&gt;and AC_COD_RS is the customer code.&lt;/P&gt;
&lt;P&gt;can anyone help me?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 17:10:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160703#M94155</guid>
      <dc:creator>Tmassimo</dc:creator>
      <dc:date>2024-01-11T17:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: SET ANALYSIS</title>
      <link>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160708#M94156</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/75772"&gt;@Tmassimo&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try doing it like the example below:&lt;/P&gt;
&lt;PRE id="tw-target-text" class="tw-data-text tw-text-large tw-ta" dir="ltr" data-placeholder="Tradução" data-ved="2ahUKEwjg9Zf88tWDAxWNCLkGHWE8BfYQ3ewLegQIBRAQ"&gt;&lt;SPAN class="Y2IQFc"&gt;count(distinct{&amp;lt; AC_COD_RS = {"=FATT_VEN_AC&amp;gt;=100"}&amp;gt;}AC_COD_RS)&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc"&gt;&lt;BR /&gt;Att, Matheus&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 17:53:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160708#M94156</guid>
      <dc:creator>MatheusC</dc:creator>
      <dc:date>2024-01-11T17:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: SET ANALYSIS</title>
      <link>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160721#M94158</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/75772"&gt;@Tmassimo&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I didn't mention the &lt;STRONG&gt;FT_SECTOR={"KI"}&lt;/STRONG&gt; filter in the message above, but I would place it within the master measure.&lt;/P&gt;
&lt;PRE id="tw-target-text" class="tw-data-text tw-text-large tw-ta" dir="ltr" data-placeholder="Tradução" data-ved="2ahUKEwjl7Z31hdaDAxW1NTUKHQeIAXcQ3ewLegQIBRAQ"&gt;&lt;SPAN class="Y2IQFc"&gt;Sum ({$&amp;lt; YEAR ={$(=CURRENT_YEAR)},&lt;STRONG&gt;FT_SECTOR={"KI"}&lt;/STRONG&gt;&amp;gt; } FT_AMOUNT)&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc"&gt;And then the count expression.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE id="tw-target-text" class="tw-data-text tw-text-large tw-ta" dir="ltr" data-placeholder="Tradução" data-ved="2ahUKEwjl7Z31hdaDAxW1NTUKHQeIAXcQ3ewLegQIBRAQ"&gt;&lt;SPAN class="Y2IQFc"&gt;count(distinct{&amp;lt; AC_COD_RS = {"=FATT_VEN_AC&amp;gt;=100"}&amp;gt;}AC_COD_RS)&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc"&gt;&lt;BR /&gt;greetings!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 19:18:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160721#M94158</guid>
      <dc:creator>MatheusC</dc:creator>
      <dc:date>2024-01-11T19:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: SET ANALYSIS</title>
      <link>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160729#M94159</link>
      <description>&lt;P&gt;&lt;SPAN&gt;May be this -&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Count( {$&amp;lt;AC_COD_RS = {"=Sum ( {$&amp;lt; YEAR ={$(=CURRENT_YEAR)}&amp;gt; } FT_AMOUNT)&amp;gt;=100"}, FT_SECTOR={"KI"}&amp;gt;} AC_COD_RS)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 20:12:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160729#M94159</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2024-01-11T20:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: SET ANALYSIS</title>
      <link>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160735#M94161</link>
      <description>&lt;P&gt;Thank you Matheus. It works well.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 20:28:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SET-ANALYSIS/m-p/2160735#M94161</guid>
      <dc:creator>Tmassimo</dc:creator>
      <dc:date>2024-01-11T20:28:35Z</dc:date>
    </item>
  </channel>
</rss>

