<?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: Selecting blank fields in set analysis in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386233#M31746</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Shraddha. It seems a good idea. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried it and, while loading data, everythings wents ok, but then, in the application, these 'NA' didn't appear and I still have null values...&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/183185_Capture.PNG" style="height: 40px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea what I might be doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Nov 2017 10:05:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-11-14T10:05:53Z</dc:date>
    <item>
      <title>Selecting blank fields in set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386230#M31743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my script I have several orders. Each order must have an assigned planner-&lt;SPAN style="font-size: 13.3333px;"&gt;field name:&lt;/SPAN&gt; InternalServPplanNome&lt;/P&gt;&lt;P&gt;Sometimes it happens that there are orders without assigned planner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In one of the KPIs I'm looking at, I need to select some orders according to the planners, including those that have no planner assigned. How can I identify a blank field in set analysis?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now I have something like this, but it's not working ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;InternalServPplanNome={'MANUEL','JOAO',''}&lt;SPAN style="font-size: 10pt;"&gt;&amp;gt;}InternalServReadyLateDisp)&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;/Count(InternalServReadyLateDisp)&lt;/SPAN&gt;&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;Any help would be appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2017 09:47:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386230#M31743</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-14T09:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting blank fields in set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386231#M31744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in Script, you can try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (isnull(InternalServPplanNome),'NA',InternalServPplanNome) as InternalServPplanNome&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in Set analysis, you can use it as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;InternalServPplanNome={'MANUEL','JOAO','NA'}&lt;SPAN style="font-size: 10pt;"&gt;&amp;gt;}InternalServReadyLateDisp)&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;/Count(InternalServReadyLateDisp)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2017 09:49:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386231#M31744</guid>
      <dc:creator>shraddha_g</dc:creator>
      <dc:date>2017-11-14T09:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting blank fields in set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386232#M31745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Most likely your fields are NULL values and not actually empty strings, alternatively they contain a blank space. Add the field into a filter pane an confirm if you can see the 'blank' values there or not. &lt;/P&gt;&lt;P&gt;If you can not see it then it is a NULL value, which means it has no defined value. For this scenario you can apply something in line with Shraddas suggestion below, to populate the null values, with either a visible value or empty string. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2017 09:55:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386232#M31745</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2017-11-14T09:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting blank fields in set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386233#M31746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Shraddha. It seems a good idea. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried it and, while loading data, everythings wents ok, but then, in the application, these 'NA' didn't appear and I still have null values...&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/183185_Capture.PNG" style="height: 40px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea what I might be doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2017 10:05:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386233#M31746</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-14T10:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting blank fields in set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386234#M31747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (len(InternalServPplanNome)&amp;lt;2,'NA',InternalServPplanNome) as InternalServPplanNome&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2017 10:07:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386234#M31747</guid>
      <dc:creator>shraddha_g</dc:creator>
      <dc:date>2017-11-14T10:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting blank fields in set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386235#M31748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Toni. That's the case: I can't see the 'black' values in a filter pane. I can only find then when I have a table, for example with the orders and the planner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to load Shraddha's suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2017 10:08:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386235#M31748</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-14T10:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting blank fields in set analysis</title>
      <link>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386236#M31749</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;shraddha's solutions will work but it's always advisable to use length(trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;InternalServPplanNome&lt;/SPAN&gt;))=0 instaed of ISnull() as it will select blank as well as null.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2017 10:30:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selecting-blank-fields-in-set-analysis/m-p/1386236#M31749</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2017-11-14T10:30:22Z</dc:date>
    </item>
  </channel>
</rss>

