<?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: Help with Chart Expression - Exclude records in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039327#M85634</link>
    <description>&lt;P&gt;Works like a charm! Thx a lot!&lt;/P&gt;</description>
    <pubDate>Fri, 17 Feb 2023 15:05:54 GMT</pubDate>
    <dc:creator>JFDemers</dc:creator>
    <dc:date>2023-02-17T15:05:54Z</dc:date>
    <item>
      <title>Help with Chart Expression - Exclude records</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039298#M85631</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am trying to exclude records for which their AccountCode starts with a specific string (5*,6*,40* etc.). I tried multiple ways but could not make it work.&lt;/P&gt;
&lt;P&gt;I tried:&lt;/P&gt;
&lt;P&gt;=IF((AccountClientType='Institutional' OR AccountClientSubType='Private Wealth')&lt;BR /&gt;AND AccountCode &amp;lt;&amp;gt; '5*',&lt;BR /&gt;AccountDisplayCodeName)&lt;/P&gt;
&lt;P&gt;=IF((AccountClientType='Institutional' OR AccountClientSubType='Private Wealth')&lt;BR /&gt;AND NOT MATCH(AccountCode,'5*','6*'),&lt;BR /&gt;AccountDisplayCodeName)&lt;/P&gt;
&lt;P&gt;Thx for the help!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 14:26:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039298#M85631</guid>
      <dc:creator>JFDemers</dc:creator>
      <dc:date>2023-02-17T14:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Chart Expression - Exclude records</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039323#M85632</link>
      <description>&lt;P&gt;use WILDMATCH instead of MATCH in your second example. Match doesn't accept wildcards (*) but wildmatch does.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 14:59:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039323#M85632</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2023-02-17T14:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Chart Expression - Exclude records</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039325#M85633</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;May be like this in set analysis&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;{&amp;lt;AccountCode -= {"5*", "6*","40*", .... and so on}&amp;gt;}&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 16:00:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039325#M85633</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2023-02-17T16:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Chart Expression - Exclude records</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039327#M85634</link>
      <description>&lt;P&gt;Works like a charm! Thx a lot!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 15:05:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039327#M85634</guid>
      <dc:creator>JFDemers</dc:creator>
      <dc:date>2023-02-17T15:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Chart Expression - Exclude records</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039333#M85636</link>
      <description>&lt;P&gt;Great!&lt;/P&gt;
&lt;P&gt;It's always a good idea to click the "accept as solution" button when a question has recieved a correct answer.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 15:16:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039333#M85636</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2023-02-17T15:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Chart Expression - Exclude records</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039334#M85637</link>
      <description>&lt;P&gt;I actually need set analysis for another expression and this one is not working either. I am trying to count the number of records with these parameters:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=COUNT({&amp;lt;AccountClientType={'Institutional'},AccountCode -= {'9*'}&amp;gt;} DISTINCT AccountCode) +&lt;BR /&gt;COUNT({&amp;lt;AccountClientSubType={'Private Wealth'},AccountCode -= {'5*', '6*','40*','48*','49*'}&amp;gt;} DISTINCT AccountCode)&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 15:16:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039334#M85637</guid>
      <dc:creator>JFDemers</dc:creator>
      <dc:date>2023-02-17T15:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Chart Expression - Exclude records</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039336#M85638</link>
      <description>&lt;P&gt;When using wildcards in set expression, you need to enclose the values with double quotes instead of single quotes: "5*" and not '5*'.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 15:19:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039336#M85638</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2023-02-17T15:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Chart Expression - Exclude records</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039339#M85639</link>
      <description>&lt;P&gt;Thx again!&lt;/P&gt;
&lt;P&gt;Still learning the syntax. Might have missed that detail in the documentation.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 15:22:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039339#M85639</guid>
      <dc:creator>JFDemers</dc:creator>
      <dc:date>2023-02-17T15:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Chart Expression - Exclude records</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039361#M85645</link>
      <description>&lt;P&gt;=COUNT({&amp;lt;AccountClientType={'Institutional'},AccountCode -= {&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;9*&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;}&amp;gt;} DISTINCT AccountCode) +&lt;BR /&gt;COUNT({&amp;lt;AccountClientSubType={'Private Wealth'},AccountCode -= {&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;5*&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;, &lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;6*&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;,&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;40*&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;,&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;48*&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;,&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;49*&lt;FONT color="#FF0000"&gt;"&lt;/FONT&gt;}&amp;gt;} DISTINCT AccountCode)&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 16:06:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Chart-Expression-Exclude-records/m-p/2039361#M85645</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2023-02-17T16:06:25Z</dc:date>
    </item>
  </channel>
</rss>

