<?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: Count if or/and in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Count-if-or-and/m-p/2107948#M90481</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/220993"&gt;@kodyjameson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you are trying to is called a "Advanced Search" on Qlik, and for that to work, you need to use Double quotes like this:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Count({&amp;lt;CODE = -{null} ,CODE = -{''} , NEW_CODE = CODE ,&lt;STRONG&gt; DIVISION = {"FA*"}&lt;/STRONG&gt; &amp;gt;} NEW_CODE)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also check this post that explains more:&lt;BR /&gt;&lt;/SPAN&gt;&lt;A href="https://community.qlik.com/t5/Design/Quotes-in-Set-Analysis/ba-p/1471824" target="_blank"&gt;https://community.qlik.com/t5/Design/Quotes-in-Set-Analysis/ba-p/1471824&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Let me know if this helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;-Zapparoli&lt;/P&gt;</description>
    <pubDate>Mon, 21 Aug 2023 18:16:16 GMT</pubDate>
    <dc:creator>Zapparoli</dc:creator>
    <dc:date>2023-08-21T18:16:16Z</dc:date>
    <item>
      <title>Count if or/and</title>
      <link>https://community.qlik.com/t5/App-Development/Count-if-or-and/m-p/2107930#M90479</link>
      <description>&lt;P&gt;Hello Qlik Wizards,&lt;/P&gt;
&lt;P&gt;I'm trying to figure out how to filter a dimension within a bar chart. My current measure formula is below and I'd like to add a Division filter to it as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Count({&amp;lt;CODE = -{null} ,CODE = -{''} , NEW_CODE = CODE , DIVISION = {'FA*'} &amp;gt;} NEW_CODE)&lt;/P&gt;
&lt;P&gt;Within the DIVISION field there are multiple values. I only want to show data that falls under divisions that begin with "FA".&lt;/P&gt;
&lt;P&gt;Any help is appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 16:43:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-if-or-and/m-p/2107930#M90479</guid>
      <dc:creator>kodyjameson</dc:creator>
      <dc:date>2023-08-21T16:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count if or/and</title>
      <link>https://community.qlik.com/t5/App-Development/Count-if-or-and/m-p/2107948#M90481</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/220993"&gt;@kodyjameson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you are trying to is called a "Advanced Search" on Qlik, and for that to work, you need to use Double quotes like this:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Count({&amp;lt;CODE = -{null} ,CODE = -{''} , NEW_CODE = CODE ,&lt;STRONG&gt; DIVISION = {"FA*"}&lt;/STRONG&gt; &amp;gt;} NEW_CODE)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also check this post that explains more:&lt;BR /&gt;&lt;/SPAN&gt;&lt;A href="https://community.qlik.com/t5/Design/Quotes-in-Set-Analysis/ba-p/1471824" target="_blank"&gt;https://community.qlik.com/t5/Design/Quotes-in-Set-Analysis/ba-p/1471824&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Let me know if this helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;-Zapparoli&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 18:16:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-if-or-and/m-p/2107948#M90481</guid>
      <dc:creator>Zapparoli</dc:creator>
      <dc:date>2023-08-21T18:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Count if or/and</title>
      <link>https://community.qlik.com/t5/App-Development/Count-if-or-and/m-p/2107950#M90482</link>
      <description>&lt;P&gt;Try.&lt;/P&gt;
&lt;P&gt;Count({$&amp;lt;Field = {"=Len(Trim(CODE )) &amp;gt; 0"}, NEW_CODE ={"=NEW_CODE=CODE "}, DIVISION = {"FA*"} &amp;gt;} NEW_CODE)&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 18:19:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-if-or-and/m-p/2107950#M90482</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2023-08-21T18:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: Count if or/and</title>
      <link>https://community.qlik.com/t5/App-Development/Count-if-or-and/m-p/2107966#M90483</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/125250"&gt;@Zapparoli&lt;/a&gt;&amp;nbsp;Thanks for the quick response! This worked like a charm!&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 18:54:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Count-if-or-and/m-p/2107966#M90483</guid>
      <dc:creator>kodyjameson</dc:creator>
      <dc:date>2023-08-21T18:54:48Z</dc:date>
    </item>
  </channel>
</rss>

