<?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 Help with removing NULL counts in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602929#M456552</link>
    <description>&lt;P&gt;Hello, I don't know if this requires a total rewrite but having difficulty getting the count of&amp;nbsp;AD_Account_Name to not include NULL's from the below. Does anyone have any tips?&lt;/P&gt;&lt;P&gt;Count (distinct (if([AD_LastLogonTimestamp.autoCalendar.Date] &amp;lt; Today()-90,&lt;STRONG&gt;AD_Account_Name&lt;/STRONG&gt;)))&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 02:59:12 GMT</pubDate>
    <dc:creator>patrick_forbes</dc:creator>
    <dc:date>2024-11-16T02:59:12Z</dc:date>
    <item>
      <title>Help with removing NULL counts</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602929#M456552</link>
      <description>&lt;P&gt;Hello, I don't know if this requires a total rewrite but having difficulty getting the count of&amp;nbsp;AD_Account_Name to not include NULL's from the below. Does anyone have any tips?&lt;/P&gt;&lt;P&gt;Count (distinct (if([AD_LastLogonTimestamp.autoCalendar.Date] &amp;lt; Today()-90,&lt;STRONG&gt;AD_Account_Name&lt;/STRONG&gt;)))&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:59:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602929#M456552</guid>
      <dc:creator>patrick_forbes</dc:creator>
      <dc:date>2024-11-16T02:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help with removing NULL counts</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602968#M456553</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try below code -&lt;/P&gt;&lt;P&gt;IF(not isnull(&lt;STRONG&gt;AD_Account_Name&lt;/STRONG&gt;),&amp;nbsp;&lt;SPAN&gt;Count (distinct (if([AD_LastLogonTimestamp.autoCalendar.Date] &amp;lt; Today()-90,&lt;/SPAN&gt;&lt;STRONG&gt;AD_Account_Name&lt;/STRONG&gt;&lt;SPAN&gt;))))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 04:43:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602968#M456553</guid>
      <dc:creator>mostwanted123</dc:creator>
      <dc:date>2019-07-17T04:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Help with removing NULL counts</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602970#M456554</link>
      <description>&lt;P&gt;OR&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Count (distinct (if([AD_LastLogonTimestamp.autoCalendar.Date] &amp;lt; Today()-90 and&amp;nbsp;not isnull(&lt;STRONG&gt;AD_Account_Name&lt;/STRONG&gt;) ,&lt;/SPAN&gt;&lt;STRONG&gt;AD_Account_Name&lt;/STRONG&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 04:45:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602970#M456554</guid>
      <dc:creator>mostwanted123</dc:creator>
      <dc:date>2019-07-17T04:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Help with removing NULL counts</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602977#M456555</link>
      <description>&lt;P&gt;I would recommend:&lt;/P&gt;&lt;P&gt;=Count(DISTINCT&lt;BR /&gt;{&amp;lt;&lt;BR /&gt;AD_Account_Name&amp;nbsp;= {"&amp;lt;&amp;gt;"}&lt;/P&gt;&lt;P&gt;,&lt;SPAN&gt;[AD_LastLogonTimestamp.autoCalendar.Date]&lt;/SPAN&gt;&lt;SPAN&gt;={"&amp;lt;=$(=Date(Today()-90)"}&lt;/SPAN&gt;&lt;BR /&gt;&amp;gt;}&lt;BR /&gt;&lt;STRONG&gt;AD_Account_Name&lt;/STRONG&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 05:20:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602977#M456555</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2019-07-17T05:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help with removing NULL counts</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602982#M456556</link>
      <description>&lt;P&gt;Nomrally, count() will ignore nulls. Your expression has an unusual structure. Move the parentheses and the distinct:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Count (distinct (if([AD_LastLogonTimestamp.autoCalendar.Date] &amp;lt; Today()-90,AD_Account_Name)))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Count (If(AD_LastLogonTimestamp.autoCalendar.Date &amp;lt; Today()-90, distinct AD_Account_Name))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Count ({&amp;lt;AD_LastLogonTimestamp.autoCalendar.Date = {"&amp;lt;$(=Date(Today()-90))"}&amp;gt;} distinct AD_Account_Name))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 05:31:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1602982#M456556</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-07-17T05:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Help with removing NULL counts</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1610941#M456557</link>
      <description>&lt;P&gt;Hey Patrick, did any of the replies help you get things sorted, if so, be sure to use the Accept as Solution button to give any of them credit that did help.&amp;nbsp; If you are still trying to figure things out, leave a new post.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Only additional thing I have is a Design Blog post that might help:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Finding-NULL/ba-p/1474279" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Finding-NULL/ba-p/1474279&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2019 21:41:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-removing-NULL-counts/m-p/1610941#M456557</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-08-08T21:41:04Z</dc:date>
    </item>
  </channel>
</rss>

