<?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 Count Records - Filter out 'Yes' &amp; Blanks in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258003#M397200</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a Table Chart where I am trying to perform the simple task of counting records where one of the fields either contains an empty value (blank or null, I assume) or contains 'No'. In other words I need the 'Yes' records filtered out of the total count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The qvd is attached. I tried using:&amp;nbsp; =Count(&amp;nbsp; {&amp;lt;[Record DQ] -= {'Yes'}&amp;nbsp; &amp;gt;}&amp;nbsp;&amp;nbsp; [Record.ID])&lt;/P&gt;&lt;P&gt;But it only returns the records with 'No'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Feb 2017 20:24:43 GMT</pubDate>
    <dc:creator>jmonroe918</dc:creator>
    <dc:date>2017-02-23T20:24:43Z</dc:date>
    <item>
      <title>Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258003#M397200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a Table Chart where I am trying to perform the simple task of counting records where one of the fields either contains an empty value (blank or null, I assume) or contains 'No'. In other words I need the 'Yes' records filtered out of the total count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The qvd is attached. I tried using:&amp;nbsp; =Count(&amp;nbsp; {&amp;lt;[Record DQ] -= {'Yes'}&amp;nbsp; &amp;gt;}&amp;nbsp;&amp;nbsp; [Record.ID])&lt;/P&gt;&lt;P&gt;But it only returns the records with 'No'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 20:24:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258003#M397200</guid>
      <dc:creator>jmonroe918</dc:creator>
      <dc:date>2017-02-23T20:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258004#M397201</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;Try this in script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Records:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; ID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date Originated], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Issue Number] as [Record Number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Isnull([Complaint Disqualification]),'Null',&lt;SPAN style="font-size: 13.3333px;"&gt;[Complaint Disqualification]&lt;/SPAN&gt;) as [Record DQ]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;Z&gt;&lt;/Z&gt;&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now on front end use below expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count(&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&amp;lt;[Record DQ] -= {'Yes','Null'}&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;gt;} &lt;/P&gt;&lt;P&gt;&amp;nbsp; [Record.ID])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 20:29:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258004#M397201</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-02-23T20:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258005#M397202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Count(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; {&amp;lt;[Record.ID] = {"=Len(Trim([Record DQ])) = 0 or [Record DQ] = 'No'"}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;gt;} &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; [Record.ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Count(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; {&amp;lt;[Record.ID] = {"=[Record DQ] &amp;lt;&amp;gt; 'Yes'"}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;gt;} &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; [Record.ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 20:30:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258005#M397202</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-23T20:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258006#M397203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kaushik &amp;amp; Sunny:&lt;/P&gt;&lt;P&gt;Thank you, both!&amp;nbsp; Your solutions worked out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I'm going to go with Sunny's solution #2. Both of you gave me great ideas for use in other applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeff &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 21:09:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258006#M397203</guid>
      <dc:creator>jmonroe918</dc:creator>
      <dc:date>2017-02-23T21:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258007#M397204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sunny:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An additional question if you don't mind...I'm using your second solution and want to add another filter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field name is "Failure" and I have a list consisting of "Shipping Damage", "Wong Product", "Incorrect Qty", etc. I want to filter out records with these selections (along with the "Record DQ" = Yes.). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if a record has Yes and one of the selections listed, then the record is not counted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 23:28:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258007#M397204</guid>
      <dc:creator>jmonroe918</dc:creator>
      <dc:date>2017-02-23T23:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258008#M397205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P 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;=Count(&lt;/STRONG&gt;&lt;/P&gt;&lt;P 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;&amp;nbsp; {&amp;lt;[Record.ID] = {"=[Record DQ] &amp;lt;&amp;gt; 'Yes' &lt;SPAN style="color: #ff0000;"&gt;and&lt;/SPAN&gt; Not Match(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Failure, '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Shipping Damage', 'Wong Product', 'Incorrect Qty')&lt;/SPAN&gt;&lt;/SPAN&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P 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;&amp;nbsp; &amp;gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P 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;&amp;nbsp; [Record.ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;or&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P 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;=Count(&lt;/STRONG&gt;&lt;/P&gt;&lt;P 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;&amp;nbsp; {&amp;lt;[Record.ID] = {"=[Record DQ] &amp;lt;&amp;gt; 'Yes' &lt;SPAN style="color: #ff0000;"&gt;or&lt;/SPAN&gt; Not Match(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Failure, '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Shipping Damage', 'Wong Product', 'Incorrect Qty')&lt;/SPAN&gt;&lt;/SPAN&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P 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;&amp;nbsp; &amp;gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P 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;&amp;nbsp; [Record.ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;From your description I was not sure if you need an OR or AND... but I guess try both to see which one works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 00:02:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258008#M397205</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-24T00:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258009#M397206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sunny:&lt;/P&gt;&lt;P&gt;I tried with with both And &amp;amp; Or, however no records displayed. I think your expression is missing the last "=". I placed it after the last selection (...&lt;SPAN style="font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;'Incorrect Qty')&lt;STRONG&gt;=&lt;/STRONG&gt;&lt;/SPAN&gt;}. Qlik liked it, but the results were not correct. Like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did I copy it incorrectly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count(DISTINCT&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&amp;lt;[Records.ID] = {"=[Record DQ]&amp;lt;&amp;gt; 'Yes' or &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Not Match([Failure],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Damaged During Shipping', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Wrong Product Sent',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Shipping Issue'}, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Order Entry Issue', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '*Lost During Shipment', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Duplicate Record')"}&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Record.ID])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 00:40:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258009#M397206</guid>
      <dc:creator>jmonroe918</dc:creator>
      <dc:date>2017-02-24T00:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258010#M397207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I missed a double quote at the end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P 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;=Count(&lt;/STRONG&gt;&lt;/P&gt;&lt;P 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;&amp;nbsp; {&amp;lt;[Record.ID] = {"=[Record DQ] &amp;lt;&amp;gt; 'Yes' &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;or&lt;/SPAN&gt; Not Match(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Failure, '&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Shipping Damage', 'Wong Product', 'Incorrect Qty')&lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P 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;&amp;nbsp; &amp;gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P 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;&amp;nbsp; [Record.ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 02:22:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258010#M397207</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-24T02:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258011#M397208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see an extra closing curly parenthesis. Remove that and also you have used *, is that for wildcard search? If that's what it is, then use WildMatch() instead of Match:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;=Count(DISTINCT&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp; {&amp;lt;[Records.ID] = {"=[Record DQ]&amp;lt;&amp;gt; 'Yes' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Not WildMatch([Failure],&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Damaged During Shipping',&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Wrong Product Sent',&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Shipping Issue',&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Order Entry Issue',&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '*Lost During Shipment',&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Duplicate Record')"}&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp; &amp;gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp; [Record.ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 02:24:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258011#M397208</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-24T02:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: Count Records - Filter out 'Yes' &amp; Blanks</title>
      <link>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258012#M397209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try This ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count(DISTINCT&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&amp;lt;[Records.ID] = {"=[Record DQ]&amp;lt;&amp;gt; 'Yes' or &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Not Match([Failure],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Damaged During Shipping', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Wrong Product Sent',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Shipping Issue', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Order Entry Issue', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '*Lost During Shipment', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Duplicate Record')"}&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Record.ID])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 02:26:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-Records-Filter-out-Yes-Blanks/m-p/1258012#M397209</guid>
      <dc:creator />
      <dc:date>2017-02-24T02:26:12Z</dc:date>
    </item>
  </channel>
</rss>

