<?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 include nulls and exclude a specific value? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226889#M391477</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure what might have gone wrong, but seems like most of the things I proposed are working on this sample &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. But I might not know your data well enough to comment more&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/150724_Capture.PNG" style="height: 242px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jan 2017 16:09:51 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-01-24T16:09:51Z</dc:date>
    <item>
      <title>How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226875#M391463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table that will count the IDs, but I need to exclude some values, the problem is that the field may have nulls or blanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using something like this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({$&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Code]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; -= {'Test'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Case Count]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I use something like that, it will also remove from the list the ones that are null. How can I use a similar expression that not exclude nulls?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:02:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226875#M391463</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-24T15:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226876#M391464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be do this in the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Code,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Case Count],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Code = 'Test', 0, 1) as Flag&lt;/P&gt;&lt;P&gt;FROM ....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Count({&amp;lt;Flag = {1}&amp;gt;}[Case Count])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:08:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226876#M391464</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-24T15:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226877#M391465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there another way to do it, directly on the Expression?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:25:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226877#M391465</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-24T15:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226878#M391466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Count({$&amp;lt;[Code] = e({&amp;lt;Code = {'Test'}&amp;gt;} Code)&amp;gt;}[Case Count])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:26:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226878#M391466</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-24T15:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226879#M391467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That works but excluded the nulls. I need the nulls in the view. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:30:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226879#M391467</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-24T15:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226880#M391468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a unique identifier in your table? Lets say you have UniqueKey as unique identifer....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Count({$&amp;lt;&lt;SPAN style="font-size: 13.3333px;"&gt;UniqueKey &lt;/SPAN&gt;= {"=Code &amp;lt;&amp;gt; 'Test' or Len(Trim(Code)) = 0"}&amp;gt;}[Case Count])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:33:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226880#M391468</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-24T15:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226881#M391469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({$&amp;lt;UniqueKey = {&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"=[Code]&amp;lt;&amp;gt;'test' or Len(Tim([Closure Code])) = 0"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Case Count]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;I am getting errors in expression message. &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:43:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226881#M391469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-24T15:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226882#M391470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have field name UniqueKey in your application? I guess not, it was just a place holder to replace with a field which uniquely identify each row from the table which include Code and Case Count. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that make sense?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:45:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226882#M391470</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-24T15:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226883#M391471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, makes sense. But it's still not working, not showing anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Count({$&amp;lt;&lt;SPAN style="font-size: 13.33px;"&gt;CaseId&lt;/SPAN&gt;= {"=Code &amp;lt;&amp;gt; 'Test' or Len(Trim(Code)) = 0"}&amp;gt;}[Case Count])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226883#M391471</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-24T15:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226884#M391472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about just this?&lt;/P&gt;&lt;P&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: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Count({$&amp;lt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.33px; font-family: inherit;"&gt;CaseId&lt;/SPAN&gt;= {"=Code &amp;lt;&amp;gt; 'Test' "}&amp;gt;}[Case Count])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:51:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226884#M391472</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-24T15:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226885#M391473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Count({$&amp;lt;[CaseId] = e({&amp;lt;Code = {'Test'}&amp;gt;} )&amp;gt;} [Case Count])&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/4424"&gt;Excluding values in Set Analysis&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226885#M391473</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-01-24T15:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226886#M391474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Count(If(Code &amp;lt;&amp;gt; 'Test', [CaseCount]))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 15:58:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226886#M391474</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-24T15:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226887#M391475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answer, this is working!!!! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 16:03:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226887#M391475</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-24T16:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226888#M391476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And this did not work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Count({$&amp;lt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.33px; font-family: inherit;"&gt;CaseId&lt;/SPAN&gt;= {"=Code &amp;lt;&amp;gt; 'Test' "}&amp;gt;}[Case Count])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/15823"&gt;swuehl&lt;/A&gt;‌ is there a difference between the above and your expression?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 16:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226888#M391476</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-24T16:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226889#M391477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure what might have gone wrong, but seems like most of the things I proposed are working on this sample &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. But I might not know your data well enough to comment more&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/150724_Capture.PNG" style="height: 242px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 16:09:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226889#M391477</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-24T16:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226890#M391478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It worked but excluded the nulls, the one from Stefan didn't excluded the nulls. Thank you both for your help. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 16:38:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226890#M391478</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-24T16:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to include nulls and exclude a specific value?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226891#M391479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for getting back &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you look at the sample attached below, I don't see that behavior.... Anyways in the end you got what you wanted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 16:41:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-include-nulls-and-exclude-a-specific-value/m-p/1226891#M391479</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-24T16:41:11Z</dc:date>
    </item>
  </channel>
</rss>

