<?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: How to add IF null statement to current expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357106#M416400</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;None of these worked&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Apr 2017 17:18:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-04-06T17:18:58Z</dc:date>
    <item>
      <title>How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357103#M416397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am currently counting First discovered dates, how would i add &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"count first discovered within the last month IF Closed_mitigated_On is null'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open:&lt;/P&gt;&lt;P&gt;Count({$&amp;lt;First_Discovered={'&amp;gt;=$(=MonthStart(Today()))&amp;lt;=$(=Today())'}&amp;gt; } First_Discovered)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I am looking to add a compliance flag into this this chart. How would I write Count(compliance_flag for the last month) &lt;/P&gt;&lt;P&gt;the above count statement isn't working. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 16:27:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357103#M416397</guid>
      <dc:creator />
      <dc:date>2017-04-06T16:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357104#M416398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Not sure what you want. Perhaps this:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Count({$&amp;lt;First_Discovered={'&amp;gt;=$(=MonthStart(Today()))&amp;lt;=$(=Today())'}, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Closed_mitigated_On-&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;={'*'} &lt;/STRONG&gt;&amp;gt;} First_Discovered)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 16:42:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357104#M416398</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2017-04-06T16:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357105#M416399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;"count first discovered within the last month IF Closed_mitigated_On is null'&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;For this, You can use like below&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(IsNull(Closed_mitigated_On), Count({&amp;lt;Month = {'$(=Max(Month, -1))'}&amp;gt;}[first discovered]))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;If(IsNull(Closed_mitigated_On), Count({&amp;lt;Month = {'$(=AddMonths(Max(Month),-1))'}&amp;gt;}[first discovered]))&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Also, I am looking to add a compliance flag into this this chart. How would I write Count(compliance_flag for the last month) &lt;/P&gt;
&lt;P&gt;the above count statement isn't working.&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;For this, you can write like below&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Count({&amp;lt;Month = {'$(=Max(Month, -1))'}&amp;gt;}&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; font-size: 13.3333px;"&gt;compliance_flag&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;Count({&amp;lt;&lt;STRONG style="font-size: 13.3333px;"&gt;Month = {'$(=AddMonths(Max(Month),-1))'}&lt;/STRONG&gt;&amp;gt;}&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; font-size: 13.3333px;"&gt;compliance_flag&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 16:44:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357105#M416399</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-04-06T16:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357106#M416400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;None of these worked&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 17:18:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357106#M416400</guid>
      <dc:creator />
      <dc:date>2017-04-06T17:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357107#M416401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you explain more please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 17:22:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357107#M416401</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-04-06T17:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357108#M416402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the 'month' isn't working and it isn't returning any data. &lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Count({&amp;lt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;EM&gt;Month&lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; = {'$(=AddMonths(Max(Month),-1))'}&lt;/STRONG&gt;&amp;gt;}&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: 'Lucida Grande', Arial, Helvetica, sans-serif;"&gt;compliance_flag&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-size: 13.3333px; font-style: inherit; font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-size: 13.3333px; font-style: inherit; font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV class="jive-thread-reply-btn-correct" style="font-weight: inherit; font-style: inherit; font-size: 11.7px; font-family: inherit;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/256276?sr=inbox&amp;amp;ru=218859" style="margin: 0 20px 0 0; padding: 2px 14px 4px 28px; font-weight: bold; font-style: inherit; font-size: 11.7px; font-family: inherit; color: #3778c7; background-color: #f3f3f3;"&gt;How to add IF null statement to current expression&lt;/A&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 17:28:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357108#M416402</guid>
      <dc:creator />
      <dc:date>2017-04-06T17:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357109#M416403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you don;t have month field. Use same month field if you have and then count of that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 17:30:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357109#M416403</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-04-06T17:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357110#M416404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it still says "expression Ok" but doesn't return any values. &lt;/P&gt;&lt;P&gt;the compliance flag has "compliant" and "non compliant'. so the current expressions for my chart are "Open", "closed" and I want two more that are "compliant" and "non Compliant" that show data from the last month. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 17:33:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357110#M416404</guid>
      <dc:creator />
      <dc:date>2017-04-06T17:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357111#M416405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any chance to share application?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 17:36:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357111#M416405</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-04-06T17:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357112#M416406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Try&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Count({$&amp;lt;First_Discovered={'&amp;gt;=$(=MonthStart(Today()))&amp;lt;=$(=Today())'}, &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Closed_mitigated_On &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;={"=len(&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Closed_mitigated_On &lt;/STRONG&gt;)=0"} &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;gt;} First_Discovered)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 17:54:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357112#M416406</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-04-06T17:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357113#M416407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No difference&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 18:18:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357113#M416407</guid>
      <dc:creator />
      <dc:date>2017-04-06T18:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357114#M416408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the format of this field: &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;First_Discovered&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 18:24:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357114#M416408</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-04-06T18:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357115#M416409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MM/DD/YYYY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 18:29:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357115#M416409</guid>
      <dc:creator />
      <dc:date>2017-04-06T18:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to add IF null statement to current expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357116#M416410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try, for previous Month data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count({$&amp;lt;First_Discovered={"&amp;gt;=$(=DATE(Addmonths(Today(),-1),'MM/DD/YYYY'&lt;SPAN style="font-size: 10pt;"&gt;))&amp;lt;&lt;SPAN style="font-size: 13.3333px;"&gt;$(=DATE(MonthStart(Today()),'MM/DD/YYYY'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;))"&lt;/SPAN&gt;}&amp;gt; } First_Discovered)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Apr 2017 18:43:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-IF-null-statement-to-current-expression/m-p/1357116#M416410</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-04-06T18:43:13Z</dc:date>
    </item>
  </channel>
</rss>

