<?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 DISTINCT NULL in left Join Table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1911545#M75129</link>
    <description>&lt;P&gt;It works! thank you. I appreciate your help.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Mar 2022 23:48:06 GMT</pubDate>
    <dc:creator>trishmre</dc:creator>
    <dc:date>2022-03-29T23:48:06Z</dc:date>
    <item>
      <title>COUNT DISTINCT NULL in left Join Table</title>
      <link>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910919#M75065</link>
      <description>&lt;P&gt;How can I count distinct Open PR for PO Creation?&lt;/P&gt;
&lt;P&gt;I have tried the count distinct and isnull PO. But till incorrect count.&lt;/P&gt;
&lt;P&gt;This is left join table.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PO for creation.PNG" style="width: 200px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/75538i590C4CF2DBBB5CCE/image-size/large?v=v2&amp;amp;px=999" role="button" title="PO for creation.PNG" alt="PO for creation.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 05:40:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910919#M75065</guid>
      <dc:creator>trishmre</dc:creator>
      <dc:date>2022-03-29T05:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: COUNT DISTINCT NULL in left Join Table</title>
      <link>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910930#M75066</link>
      <description>&lt;P&gt;Hi, not sure where you want to count this, in load script or report level, but as one of suggestion could be something like this:&lt;/P&gt;
&lt;P&gt;count(distinct if (len(PO)&amp;gt;0, PO))&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 06:15:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910930#M75066</guid>
      <dc:creator>justISO</dc:creator>
      <dc:date>2022-03-29T06:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: COUNT DISTINCT NULL in left Join Table</title>
      <link>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910937#M75067</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I am trying to have KPI chart, I need to count the NULL PO or PO =&amp;nbsp; '-' that has PR Status&amp;nbsp; equal to Open and distinct the PR.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 06:34:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910937#M75067</guid>
      <dc:creator>trishmre</dc:creator>
      <dc:date>2022-03-29T06:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: COUNT DISTINCT NULL in left Join Table</title>
      <link>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910941#M75068</link>
      <description>&lt;P&gt;Maybe this way:&lt;/P&gt;
&lt;P&gt;count(distinct if ((len(PO)=0 or isnull(PO)) and [PR Status]='Open', PO))&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 06:44:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910941#M75068</guid>
      <dc:creator>justISO</dc:creator>
      <dc:date>2022-03-29T06:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: COUNT DISTINCT NULL in left Join Table</title>
      <link>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910948#M75070</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="trishmre_0-1648536609569.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/75544iF7523A8FCB51042E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="trishmre_0-1648536609569.png" alt="trishmre_0-1648536609569.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not working, I am expecting to have number of PO.&lt;/P&gt;
&lt;P&gt;I have already count of Open PR&lt;/P&gt;
&lt;P&gt;=Count(distinct{&amp;lt;[PR Status]= {'Open'}&amp;gt;}PR)&lt;/P&gt;
&lt;P&gt;I need to add condition to count the null PO for the Distinct PR column that has PR Status = 'Open'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 06:53:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1910948#M75070</guid>
      <dc:creator>trishmre</dc:creator>
      <dc:date>2022-03-29T06:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: COUNT DISTINCT NULL in left Join Table</title>
      <link>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1911201#M75092</link>
      <description>&lt;P&gt;Hi, this?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;=COUNT({&amp;lt;PR*=E({&amp;lt;PO={"*"}&amp;gt;}),[PR Status]={'Open'}&amp;gt;}DISTINCT PR)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 29 Mar 2022 12:45:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1911201#M75092</guid>
      <dc:creator>RsQK</dc:creator>
      <dc:date>2022-03-29T12:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: COUNT DISTINCT NULL in left Join Table</title>
      <link>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1911545#M75129</link>
      <description>&lt;P&gt;It works! thank you. I appreciate your help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 23:48:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/COUNT-DISTINCT-NULL-in-left-Join-Table/m-p/1911545#M75129</guid>
      <dc:creator>trishmre</dc:creator>
      <dc:date>2022-03-29T23:48:06Z</dc:date>
    </item>
  </channel>
</rss>

