<?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: returning null values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866005#M470512</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set expressions are all about selections (or searches). Can you manually apply a selection that includes the data you are looking for? If the answer is YES, then the set expression usually is fairly easy to compose. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more advanced set analysis you might need to look at using set operators to find the data area where your results should come from. P() and E() functions can also be handy to target possible and excluded results in advance set analysis. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Help or reference manual cover the possibilities in the Set Analysis chapter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get an accurate answer to your specific questions I think you need to provide a sample QVW, so that your data can be evaluate and put in context of the expression. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 May 2015 00:23:20 GMT</pubDate>
    <dc:creator>ToniKautto</dc:creator>
    <dc:date>2015-05-15T00:23:20Z</dc:date>
    <item>
      <title>returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866004#M470511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey I have a problem with returning null values,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what I'm trying to achieve is to return the hire date (obtain a list of items on hire),&lt;/P&gt;&lt;P&gt;where hire date is &amp;lt;=today, and off hire date &amp;gt;today. however some items may still be on hire and not have a off hire date (Nulls)&lt;/P&gt;&lt;P&gt;Question - how may i bring the nulls into the expression?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this current expression only return 'Hire date' if 'Off hire Date' exists.&lt;/P&gt;&lt;P&gt;MaxString({&amp;lt;Status={'ON HIRE'},Hire_FiscalMonth=,Hire_FiscalYear=,OffHireDate={'&amp;gt;$(vHireYTDEnd)'},HireDate={'&amp;lt;=$(vHireYTDEnd)'}&amp;gt;}HireDate)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bon.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 00:08:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866004#M470511</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-15T00:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866005#M470512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set expressions are all about selections (or searches). Can you manually apply a selection that includes the data you are looking for? If the answer is YES, then the set expression usually is fairly easy to compose. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more advanced set analysis you might need to look at using set operators to find the data area where your results should come from. P() and E() functions can also be handy to target possible and excluded results in advance set analysis. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Help or reference manual cover the possibilities in the Set Analysis chapter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get an accurate answer to your specific questions I think you need to provide a sample QVW, so that your data can be evaluate and put in context of the expression. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 00:23:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866005#M470512</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2015-05-15T00:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866006#M470513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many ways you can do this. Using your expression, try this option&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;MaxString({&amp;lt;Status={'ON HIRE'},Hire_FiscalMonth=,Hire_FiscalYear=,OffHireDate={'&amp;gt;$(vHireYTDEnd)'},HireDate={'&amp;lt;=$(vHireYTDEnd)'}, &lt;STRONG&gt;isnull(OffHireDate)=-1&lt;/STRONG&gt;&amp;gt;}HireDate)&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-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;isnull() returns -1 as a true value&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 01:35:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866006#M470513</guid>
      <dc:creator />
      <dc:date>2015-05-15T01:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866007#M470514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have never seen a construction like that in set expression. Do you have an example where you can show that this principle works?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 01:47:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866007#M470514</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2015-05-15T01:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866008#M470515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌check this post by HIC on how to work with null values &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3155"&gt;NULL handling in QlikView&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 01:48:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866008#M470515</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-05-15T01:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866009#M470516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Toni.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your reply, how may I upload my QVW? i've reduced the data and scrambled some parts of it, but cannot seem to find the option to upload &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Bon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 02:38:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866009#M470516</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-15T02:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866010#M470517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Imad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your reply, I have tried using your expression, but doesnt seem to work, instead it returned Null for all my HireDate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 02:40:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866010#M470517</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-15T02:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866011#M470518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Ramon, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will go through the reading today &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 02:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866011#M470518</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-15T02:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866012#M470519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, the part highlight in bold in Imad's example is not a valid syntax. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 03:11:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866012#M470519</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2015-05-15T03:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866013#M470520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Attach file in existing entry&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Select Edit in the Action drop down.&lt;BR /&gt;&lt;IMG alt="2015-05-15 13_11_54-returning null values _ Qlik Community.png" class="jive-image image-2" height="125" src="/legacyfs/online/86640_2015-05-15 13_11_54-returning null values _ Qlik Community.png" style="font-size: 13.3333330154419px; height: 125px; width: 89.3617021276596px;" width="89" /&gt; &lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Click Attach in the lower right corner of the entry editor. &lt;BR /&gt;&lt;/SPAN&gt;&lt;IMG alt="2015-05-15 13_12_13-Edit reply to Re_ returning null values _ Qlik Community.png" class="jive-image image-1" src="/legacyfs/online/86617_2015-05-15 13_12_13-Edit reply to Re_ returning null values _ Qlik Community.png" style="height: auto;" /&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;STRONG&gt;New reply to a thread&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Switch the editor to advanced mode&lt;BR /&gt;&lt;IMG alt="2015-05-15 13_14_43-Blank or NULL in Set Analysis _ Qlik Community.png" class="jive-image image-3" src="/legacyfs/online/86641_2015-05-15 13_14_43-Blank or NULL in Set Analysis _ Qlik Community.png" style="height: auto;" /&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt;"&gt;Click Attach in the lower right corner of the entry editor. &lt;BR /&gt;&lt;/SPAN&gt;&lt;IMG alt="2015-05-15 13_12_13-Edit reply to Re_ returning null values _ Qlik Community.png" class="jive-image image-1" src="/legacyfs/online/86617_2015-05-15 13_12_13-Edit reply to Re_ returning null values _ Qlik Community.png" /&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 03:17:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866013#M470520</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2015-05-15T03:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866014#M470521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for that, uploaded &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it all make sense,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you look at the expression you will see a few there, those are there because one container may have more than one line of actions associated with it, therefore i would like to select the latest record in the field based on hire date.&lt;/P&gt;&lt;P&gt;and the expression posted above would only return those with an off hire date, those which null (still on hire) or not returned. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 03:25:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866014#M470521</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-15T03:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866015#M470522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean example on the isNull() , search the help on the is null. it is a common function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 10:58:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866015#M470522</guid>
      <dc:creator />
      <dc:date>2015-05-15T10:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866016#M470523</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;&lt;STRONG style="text-decoration: line-through;"&gt;=MaxString({&amp;lt;CONTAINERSTATUSCODE={'ON HIRE'},&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;STRONG&gt;&amp;nbsp; Hire_FiscalMonth=,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;STRONG&gt;&amp;nbsp; Hire_FiscalYear=,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;STRONG&gt;&amp;nbsp; OffHireDate={'&amp;gt;=$(vHireYTDEnd)'}&lt;SPAN style="color: #ff0000; text-decoration: line-through;"&gt;+{"=Len(Trim(OffHireDate)) &amp;gt; 0"}&lt;/SPAN&gt;,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: line-through;"&gt;&amp;nbsp; HireDate={'&amp;lt;=$(vHireYTDEnd)'}&amp;gt;}HireDate)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UPDATE: Does not work, trying to get a correct solution&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;I hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 11:32:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866016#M470523</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-05-15T11:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866017#M470524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this should do it, first you have one expression that include a items with an &lt;SPAN style="font-size: 13.3333330154419px;"&gt;offhiredate&lt;/SPAN&gt;, and then you run a second set for the ones that have a null value for &lt;SPAN style="font-size: 13.3333330154419px;"&gt;OffHireDate and then you join them(I used &lt;SPAN style="font-size: 13.3333330154419px;"&gt;CONTAINERID as an identifier, you can switch this for whatever you want)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MaxString({&lt;/P&gt;&lt;P&gt;&amp;lt;CONTAINERSTATUSCODE={'ON HIRE'},Hire_FiscalMonth=,Hire_FiscalYear=,OffHireDate={'&amp;gt;$(vHireYTDEnd)'},HireDate={'&amp;lt;=$(vHireYTDEnd)'}&amp;gt;&lt;/P&gt;&lt;P&gt;+&lt;/P&gt;&lt;P&gt;&amp;lt;CONTAINERSTATUSCODE={'ON HIRE'},Hire_FiscalMonth=,Hire_FiscalYear=,OffHireDate={'&amp;gt;$(vHireYTDEnd)'},HireDate={'&amp;lt;=$(vHireYTDEnd)'}, CONTAINERID ={"=nullcount(OffHireDate)&amp;gt;0"}&amp;gt;&lt;/P&gt;&lt;P&gt;}HireDate)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 16:18:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866017#M470524</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-05-15T16:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866018#M470525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am very familiar with the IsNull() function. To my knowledge your suggestion is not a valid expression. &lt;SPAN style="font-size: 13.3333330154419px;"&gt;My question is if you have an example QVW where you can show that this construction works?o&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 22:02:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866018#M470525</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2015-05-15T22:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866019#M470526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand. It was just a thought and an idea that one can build on. Its all about sharing ideas I guess (right or wrong).&lt;/P&gt;&lt;P&gt;I agree with you however, it is not a valid syntax. I checked. Many thanks for this.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 22:37:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866019#M470526</guid>
      <dc:creator />
      <dc:date>2015-05-15T22:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866020#M470527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry for the delay to reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no luck with any of the solutions provided yet. will update if i find a way to fix this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 May 2015 22:34:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866020#M470527</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-17T22:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: returning null values</title>
      <link>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866021#M470528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think i may have what i need, at least it looks correct for the time being, may need further checking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i did was i added a Null flag in the load script, as per &lt;A href="https://community.qlik.com/thread/104578"&gt;Value NULL in set analysis?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;below was added to my load script where offhiredate field is located:&lt;/P&gt;&lt;P&gt;If(Len(OFFHIREDATE) = 0, 1, 0) as OffHireNullFlag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;didn't think it would actually work but it did.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in combined with some of the codes provided by Ramon&lt;/P&gt;&lt;P&gt;the following expression was used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MaxString({&amp;lt;Hire_FiscalMonth=,Hire_FiscalYear=,OffHireDate={'&amp;gt;=$(vHireCurrentMonthStart)'},HireDate={'&amp;lt;=$(vHireCurrentMonthEnd)'}&amp;gt;&lt;/P&gt;&lt;P&gt;+&lt;/P&gt;&lt;P&gt;&amp;lt;Hire_FiscalMonth=,Hire_FiscalYear=,OffHireNullFlag={1},HireDate={'&amp;lt;=$(vHireCurrentMonthEnd)'}&amp;gt;&lt;/P&gt;&lt;P&gt;}HireDate)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what changes made to the code was:&lt;/P&gt;&lt;P&gt;1) removed the statusCode&lt;/P&gt;&lt;P&gt;2) OffHireDate now has a new variable, which states the first date of month instead "=min(hireDate)"&lt;/P&gt;&lt;P&gt;3) HireDate still uses end of month (new variable name)&lt;/P&gt;&lt;P&gt;4) Null flag added to expression in 2nd part instead of OffHireDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps anyone trying to achieve similar things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all for help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 00:49:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/returning-null-values/m-p/866021#M470528</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-18T00:49:31Z</dc:date>
    </item>
  </channel>
</rss>

