<?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: NULL values in script in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/NULL-values-in-script/m-p/1683618#M52055</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I updated the LOAD script as below but the result is still the same.&lt;/P&gt;&lt;P&gt;If (not isnull(inc_wip_date), inc_wip_date, inc_cleared_date) as inc_wip_date,&lt;/P&gt;&lt;P&gt;inc_ID,&lt;BR /&gt;inc_start_date,&lt;BR /&gt;inc_cleared_date,&lt;BR /&gt;inc_pending_date,&lt;BR /&gt;inc_create_date,&lt;BR /&gt;// inc_wip_date,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;if(not isnull(inc_wip_date),'1','0') as script_wip_Null_check&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/Stefan&lt;/P&gt;</description>
    <pubDate>Wed, 11 Mar 2020 08:22:19 GMT</pubDate>
    <dc:creator>stekol61</dc:creator>
    <dc:date>2020-03-11T08:22:19Z</dc:date>
    <item>
      <title>NULL values in script</title>
      <link>https://community.qlik.com/t5/App-Development/NULL-values-in-script/m-p/1683253#M52026</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I'm loading ticket data with some different date fields:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If (not isnull(inc_wip_date), inc_wip_date, inc_cleared_date) as inc_wip_date,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if(not isnull(inc_wip_date),'1','0') as script_wip_Null_check,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;inc_ID,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;inc_cleared_date,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;inc_create_date&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;// inc_wip_date,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;The result looks like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="wip_check.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/29814i242B3208395B8385/image-size/large?v=v2&amp;amp;px=999" role="button" title="wip_check.PNG" alt="wip_check.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The 'inc_wip_date' is modified by the first expression in the load script. The original value of&amp;nbsp; 'inc_wip_date' is NULL for this ticket.&lt;/P&gt;&lt;P&gt;The 'script_wip_Null_check' expression see this as a NULL value.&lt;/P&gt;&lt;P&gt;I want to use this modified&amp;nbsp;'inc_wip_date' in an expression but since&amp;nbsp; seems to be a NULL value it will not be possible to use.&lt;/P&gt;&lt;P&gt;How can this be handled?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 12:10:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/NULL-values-in-script/m-p/1683253#M52026</guid>
      <dc:creator>stekol61</dc:creator>
      <dc:date>2020-03-10T12:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values in script</title>
      <link>https://community.qlik.com/t5/App-Development/NULL-values-in-script/m-p/1683441#M52042</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try to write this expression&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if(not isnull(inc_wip_date),'1','0') as script_wip_Null_check&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;in&amp;nbsp;preceding load&amp;nbsp; and check result.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2020 17:59:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/NULL-values-in-script/m-p/1683441#M52042</guid>
      <dc:creator>nikitadeshwal</dc:creator>
      <dc:date>2020-03-10T17:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values in script</title>
      <link>https://community.qlik.com/t5/App-Development/NULL-values-in-script/m-p/1683618#M52055</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I updated the LOAD script as below but the result is still the same.&lt;/P&gt;&lt;P&gt;If (not isnull(inc_wip_date), inc_wip_date, inc_cleared_date) as inc_wip_date,&lt;/P&gt;&lt;P&gt;inc_ID,&lt;BR /&gt;inc_start_date,&lt;BR /&gt;inc_cleared_date,&lt;BR /&gt;inc_pending_date,&lt;BR /&gt;inc_create_date,&lt;BR /&gt;// inc_wip_date,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;if(not isnull(inc_wip_date),'1','0') as script_wip_Null_check&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;/Stefan&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 08:22:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/NULL-values-in-script/m-p/1683618#M52055</guid>
      <dc:creator>stekol61</dc:creator>
      <dc:date>2020-03-11T08:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: NULL values in script</title>
      <link>https://community.qlik.com/t5/App-Development/NULL-values-in-script/m-p/1683678#M52063</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try below code and check again&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load *,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;if(not isnull(inc_wip_date1),'1','0') as script_wip_Null_check;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;load *,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;If (not isnull(inc_wip_date), inc_wip_date, inc_cleared_date) as inc_wip_date1;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Load&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;inc_ID,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;inc_start_date,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;inc_cleared_date,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;inc_pending_date,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;inc_create_date,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;inc_wip_date,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM ....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nikita Deshwal&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 10:10:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/NULL-values-in-script/m-p/1683678#M52063</guid>
      <dc:creator>nikitadeshwal</dc:creator>
      <dc:date>2020-03-11T10:10:00Z</dc:date>
    </item>
  </channel>
</rss>

