<?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 select records with multiple conditions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227043#M873813</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need not solve this in qlik surface. Just go into your load script and make a resident load like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table_New:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Load *, if(isnull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Customer.Job End Date]&lt;/SPAN&gt;),1,0) as NoJobEndDate&lt;/P&gt;&lt;P&gt;resident &lt;SPAN style="font-size: 13.3333px;"&gt;Table_old&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;drop table Table_old;&lt;/P&gt;&lt;P&gt;//here you have an extra fiel where you can slect whether there is a value in the field or not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//or if you prefere, you can use this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Table_New:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load *, if(isnull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Customer.Job End Date]&lt;/SPAN&gt;),'No value',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Customer.Job End Date]&lt;/SPAN&gt;) as NoJobEndDate&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;resident &lt;SPAN style="font-size: 13.3333px;"&gt;Table_old&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;drop table Table_old;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;//here you can slect the tetxt "No Value" inside your field to find the "empty" values&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Hope that helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Sabine&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jan 2017 09:29:19 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-01-19T09:29:19Z</dc:date>
    <item>
      <title>How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227034#M873804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm writing a WIP report using QuickBooks Advanced Reporting, which is built on QlikView.&amp;nbsp; I have built a pivot table that collects the data I need, but now I need to filter the records based on multiple conditions.&amp;nbsp; Specifically:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Customer.Job Start Date] is not blank and&lt;/P&gt;&lt;P&gt;(([Customer.Job End Date] is blank) or ([Customer.Job End Date] &amp;gt; 10/31/2016)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using a list box, I have been able to select records where &lt;SPAN style="font-size: 13.3333px;"&gt;[Customer.Job End Date] &amp;gt; 10/31/2016 quite easily using a list box and advanced search.&amp;nbsp; I have not been able to select records where either of these fields is blank or not blank, much less combine all these conditions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm a newbie, so perhaps this is simple and I just don't know the proper syntax.&amp;nbsp; Can anybody suggest a method to accomplish this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227034#M873804</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227035#M873805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=len(trim([Customer Job Start Date]))&amp;gt;0 and (len(trim([Customer Job End Date]))=0 or [Customer Job End Date] &amp;gt; makedate(2016,10,31) )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 22:46:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227035#M873805</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-11-09T22:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227036#M873806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Stefan.&amp;nbsp; I tested this in pieces.&lt;/P&gt;&lt;P&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;[Customer Job End Date] &amp;gt; makedate(2016,10,31) does yield records with end dates greater than 10/31/2016&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-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;len(trim([Customer Job End Date]))=0 yields all records&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;len(trim([Customer Job Start Date]))&amp;gt;0 yields records with a start date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I set up a table with the expression len(trim([Customer.Job End Date])).&amp;nbsp; The expression yields two values, 0 and 10.&amp;nbsp; If I set the advanced search to l&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;en(trim([Customer.Job End Date]))=10, I get only records with a value in Customer.Job End Date.&amp;nbsp; However, if I set it to&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; l&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;en(trim([Customer.Job End Date]))=0, I get all records.&amp;nbsp; If I set it to &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;l&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;en(trim([Customer.Job End Date]))=9, I get all records.&amp;nbsp; If I set it to &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; l&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;en(trim([Customer.Job End Date]))&amp;lt;10, I get all records.&amp;nbsp; If I set it to &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; l&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;en(trim([Customer.Job End Date]))&amp;lt;&amp;gt;10, I get all records. If I set it to&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; l&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;en(trim([Customer.Job End Date]))&amp;gt;0, I get only records with a value in Customer.Job End Date.&amp;nbsp; If I set it to not (len(trim([Customer.Job End Date]))=10), I get all records.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Any thoughts?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 15:09:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227036#M873806</guid>
      <dc:creator />
      <dc:date>2016-11-10T15:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227037#M873807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you post some more details about your data model and which field you are trying to apply the advanced search to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not familiar with Quickbooks AR, does this store a QVW file you could maybe share?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or are you maybe able to create&amp;nbsp; small sample application using QlikView personal edition and share this sample?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 17:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227037#M873807</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-11-10T17:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227038#M873808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apparently handling nulls in QlikView is a problem.&amp;nbsp; I found &lt;A href="http://www.qlikviewaddict.com/2012/04/handling-nulls-in-qlikview.html" title="http://www.qlikviewaddict.com/2012/04/handling-nulls-in-qlikview.html"&gt;QlikView Addict: Handling Nulls in QlikView&lt;/A&gt; while searching, and it has a hint that helps, but hasn't provided the final answer.&amp;nbsp; See his section on selecting nulls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works well as far as it goes.&amp;nbsp; I created a list box for [Customer.Name] and in Advanced Search entered:&lt;/P&gt;&lt;P&gt;=IsNull([Customer.Job End Date])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This gives my a list of jobs for which the job end date is blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can also enter into this advanced search:&lt;/P&gt;&lt;P&gt;=([Customer.Job End Date]) &amp;gt; MakeDate(2016,10,31)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which yields all jobs with an end date later than 10/31/2016.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, putting in both of these conditions connected with an "or" gives me only the results of the first condition.&amp;nbsp; Do you have a thought on how to make this happen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do have a .qvw file I could upload.&amp;nbsp; Will it help you if you don't have the data model?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 19:40:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227038#M873808</guid>
      <dc:creator />
      <dc:date>2016-11-10T19:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227039#M873809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A QVW also holds the model, so it might indeed help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 15:25:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227039#M873809</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-11-11T15:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227040#M873810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here it is.&amp;nbsp; Let me know what you think.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 15:42:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227040#M873810</guid>
      <dc:creator />
      <dc:date>2016-11-11T15:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227041#M873811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems there is section access applied to the QVW, i.e. it's asking for userid (and password?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you remove the section access script part and reload your document?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 22:26:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227041#M873811</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-11-11T22:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227042#M873812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stefan, I'm afraid that's beyond my skill set.&amp;nbsp; QuickBooks Advanced Reporting is bundled with QuickBooks.&amp;nbsp; It's probable that the user name and password are somehow part of the linkage with QB.&amp;nbsp; I know that any user with access to Advanced Reporting can open these reports, so it seems unlikely that it is just my user name and password.&amp;nbsp; I don't have a stand-alone copy of Qlik View, and wouldn't have the skills to modify the script even if I had the software.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As it stands, I can use the individual conditions to get the report I want in two pieces, then combine them in Excel.&amp;nbsp; It just seems a shame that I can't use the tool to get the whole report in one run.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Nov 2016 15:27:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227042#M873812</guid>
      <dc:creator />
      <dc:date>2016-11-14T15:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to select records with multiple conditions</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227043#M873813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need not solve this in qlik surface. Just go into your load script and make a resident load like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table_New:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Load *, if(isnull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Customer.Job End Date]&lt;/SPAN&gt;),1,0) as NoJobEndDate&lt;/P&gt;&lt;P&gt;resident &lt;SPAN style="font-size: 13.3333px;"&gt;Table_old&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;drop table Table_old;&lt;/P&gt;&lt;P&gt;//here you have an extra fiel where you can slect whether there is a value in the field or not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//or if you prefere, you can use this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Table_New:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load *, if(isnull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Customer.Job End Date]&lt;/SPAN&gt;),'No value',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Customer.Job End Date]&lt;/SPAN&gt;) as NoJobEndDate&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;resident &lt;SPAN style="font-size: 13.3333px;"&gt;Table_old&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;drop table Table_old;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;//here you can slect the tetxt "No Value" inside your field to find the "empty" values&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Hope that helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Sabine&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 09:29:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-records-with-multiple-conditions/m-p/1227043#M873813</guid>
      <dc:creator />
      <dc:date>2017-01-19T09:29:19Z</dc:date>
    </item>
  </channel>
</rss>

