<?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: How to identify missing records on a table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197321#M386056</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you're welcome&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Oct 2016 17:03:59 GMT</pubDate>
    <dc:creator>eduardo_sommer</dc:creator>
    <dc:date>2016-10-19T17:03:59Z</dc:date>
    <item>
      <title>How to identify missing records on a table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197314#M386049</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;I have a table in my Qlikview model with numeric record ID's that follow on each other.&lt;/P&gt;&lt;P&gt;I now want to identify where there are missing ID's on the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the best way to do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2016 07:37:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197314#M386049</guid>
      <dc:creator />
      <dc:date>2016-10-14T07:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify missing records on a table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197315#M386050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To add to my question above:&lt;/P&gt;&lt;P&gt;One way that I thought of doing this is to create a separate table starting from the minimum number on the record ID's and to autonumber up to the max record ID on the main table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I could do this I could then in a qlikview chart item identify the ID's that is on the one table and not on the other table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sure there is an easier way to do this, but assuming this is the best way to go about, could somebody please assist me with how to create auto numbers from a set minimum to a set maximum within a new separate table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2016 08:09:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197315#M386050</guid>
      <dc:creator />
      <dc:date>2016-10-17T08:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify missing records on a table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197316#M386051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use one of the options from this document: &lt;A href="https://community.qlik.com/docs/DOC-3786"&gt;Generating Missing Data In QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Perhaps like this, but without the last step that fills in the missing rate field values: &lt;A href="https://community.qlik.com/qlik-blogpost/2928"&gt;How to populate a sparsely populated field&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2016 06:05:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197316#M386051</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-10-18T06:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify missing records on a table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197317#M386052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Yessica&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Supose your original table has the fields (RecordID, Field1, Field2), and you want to find the gaps in the RecordID. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following script will create a table with all the gaps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableAnalysis:&lt;/P&gt;&lt;P&gt;Load RecordID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ((RecordID - peek(RecordID)) &amp;gt; 1, 'Records between ' &amp;amp; peek(RecordID) &amp;amp; ' and ' &amp;amp; RecordID &amp;amp; ' missing', 'Ok')&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Message&lt;/P&gt;&lt;P&gt;Resident [Original Table]&lt;/P&gt;&lt;P&gt;Order by RecordID;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eduardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2016 12:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197317#M386052</guid>
      <dc:creator>eduardo_sommer</dc:creator>
      <dc:date>2016-10-18T12:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify missing records on a table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197318#M386053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use IntervalMatch to generate all the numbers between your min and max value. You can than use this table to compare any missing values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2016 13:35:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197318#M386053</guid>
      <dc:creator />
      <dc:date>2016-10-18T13:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify missing records on a table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197319#M386054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 13:33:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197319#M386054</guid>
      <dc:creator />
      <dc:date>2016-10-19T13:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify missing records on a table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197320#M386055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you give sample record? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 14:03:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197320#M386055</guid>
      <dc:creator>silambarasan</dc:creator>
      <dc:date>2016-10-19T14:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify missing records on a table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197321#M386056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you're welcome&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 17:03:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197321#M386056</guid>
      <dc:creator>eduardo_sommer</dc:creator>
      <dc:date>2016-10-19T17:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify missing records on a table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197322#M386057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to take this further -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With your help I can now count the number of gaps I have with regards to missing records by merely counting the distinct number of messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I also want to count the number of missing records (for example one gap has 3 records missing and the next gap has 2 missing records adding to 5 in total), is there an easy way you know of to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2016 11:49:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-missing-records-on-a-table/m-p/1197322#M386057</guid>
      <dc:creator />
      <dc:date>2016-10-20T11:49:57Z</dc:date>
    </item>
  </channel>
</rss>

