<?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: Button to search empty fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353130#M131039</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this in the search string of your button select - select in field action:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='= not len(trim(FIELDNAME))'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and put FIELDNAME of course also in the entry box of the action dialog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2012 14:15:16 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2012-06-14T14:15:16Z</dc:date>
    <item>
      <title>Button to search empty fields</title>
      <link>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353129#M131038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to have a button display all the fields that are empty in a given column? I can pick them in Qlikview, so they must have a space of some sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried putting =&amp;nbsp; * in the search string but it wont search a space.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 14:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353129#M131038</guid>
      <dc:creator />
      <dc:date>2012-06-14T14:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Button to search empty fields</title>
      <link>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353130#M131039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this in the search string of your button select - select in field action:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='= not len(trim(FIELDNAME))'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and put FIELDNAME of course also in the entry box of the action dialog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 14:15:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353130#M131039</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-14T14:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Button to search empty fields</title>
      <link>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353131#M131040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That didn't work. Any other thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 14:32:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353131#M131040</guid>
      <dc:creator />
      <dc:date>2012-06-14T14:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Button to search empty fields</title>
      <link>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353132#M131041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would edit your load script and use if(isnull([FIELDNAME]),'BLANK',[FIELDNAME])&lt;/P&gt;&lt;P&gt;i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD XYZ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(isnull(XYZ),'BLANK',XYZ) AS XYZNEW,&lt;/P&gt;&lt;P&gt;FROM .......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 14:37:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353132#M131041</guid>
      <dc:creator />
      <dc:date>2012-06-14T14:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Button to search empty fields</title>
      <link>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353133#M131042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;isnull() will not return true if the field contain some sort of spaces. You need to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( len(trim(FIELD))=0, ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( len(trim(purgechar(FIELD, chr(160)))) = 0,...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ethanjbeau, could you upload a small sample file? I assumed your column is a field (e.g. displayed in a list box), not a column in a table that was calculated by an expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 14:44:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353133#M131042</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-14T14:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Button to search empty fields</title>
      <link>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353134#M131043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes the column is a field. I ended up coping one of the "blank" cells and pasting it and the button works correctly. Now I need to also have it search for nulls and im not sure how to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 17:47:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353134#M131043</guid>
      <dc:creator />
      <dc:date>2012-06-14T17:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Button to search empty fields</title>
      <link>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353135#M131044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using one of the methods above to create a new field in the script to flag BLANK / NULL should do what you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 18:16:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-to-search-empty-fields/m-p/353135#M131044</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-14T18:16:49Z</dc:date>
    </item>
  </channel>
</rss>

