<?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: Filling in missing values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537498#M688954</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your source files also contain a date then you can use that date field to get the latest values, for example using the firstsortedvalue function. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 02 Nov 2013 10:07:36 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2013-11-02T10:07:36Z</dc:date>
    <item>
      <title>Filling in missing values</title>
      <link>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537495#M688949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm working on a project where every month, each of the 100 customers are asked various questions in a survey. The&amp;nbsp; customers are very reliable in responding each month, but occasionally a few will miss a month or only answer a few of the questions. We also lose and gain new customers each month too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We will be doing a full reload each month of the whole data set, but if a customer is missing the survey for the most recent month, then we need to use the values from the previous month they had completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would be the best way to implement this reload method where we can do a full reload, yet still use old values if current values are missing? I should stress that only a few of the fields in each record may be missing, not the whole record. I'd need to find which fields are missing values, and replace them with older values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Oct 2013 18:35:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537495#M688949</guid>
      <dc:creator />
      <dc:date>2013-10-28T18:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Partial incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537496#M688951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've gotten this to work by using the Previous() function to first check for null values and then return the previous value.&lt;/P&gt;&lt;P&gt;if(isnull(Survey1),Previous(Survey1),Survey1) as [Monthly Survey1]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, how&amp;nbsp; can I get this to work if the previous value is also null? If there are several null values in a row, it needs to be able to go back to the last available record. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 16:44:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537496#M688951</guid>
      <dc:creator />
      <dc:date>2013-10-30T16:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Partial incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537497#M688953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to use but it's not filling in any missing values. Ideas?&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: 12.727272033691406px;"&gt;if(isnull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Survey1&lt;/SPAN&gt;) AND [Client]=peek([Client]), peek(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Survey1&lt;/SPAN&gt;), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Survey1&lt;/SPAN&gt;) AS &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Survey1&lt;/SPAN&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: 12.727272033691406px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Nov 2013 19:01:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537497#M688953</guid>
      <dc:creator />
      <dc:date>2013-11-01T19:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Filling in missing values</title>
      <link>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537498#M688954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your source files also contain a date then you can use that date field to get the latest values, for example using the firstsortedvalue function. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Nov 2013 10:07:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537498#M688954</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-11-02T10:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Filling in missing values</title>
      <link>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537499#M688956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you give an example using the firstsortedvalue function in case of set analysis please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have nearly the same problem in my application. there are two or more missing values in a row and i want qlikview to use the last availible value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Nov 2013 07:35:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filling-in-missing-values/m-p/537499#M688956</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2013-11-03T07:35:18Z</dc:date>
    </item>
  </channel>
</rss>

