<?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 get Missing table Information ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929514#M321435</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus Sommer&lt;/P&gt;&lt;P&gt;I want Missing Error Field Details , as following&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="99981" alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99981_Untitled.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Note : These values must and should associate to the Error_Files&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached Application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Sep 2015 16:03:24 GMT</pubDate>
    <dc:creator>madhubabum</dc:creator>
    <dc:date>2015-09-24T16:03:24Z</dc:date>
    <item>
      <title>How get Missing table Information ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929508#M321429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How to Get missing Table Information ?&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;Please Find Attached Sample Files and Application.&lt;/P&gt;&lt;P&gt;How We can achieve this one ? &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 06:52:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929508#M321429</guid>
      <dc:creator>madhubabum</dc:creator>
      <dc:date>2015-09-24T06:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: How get Missing table Information ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929509#M321430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi madhu babu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you elaborate a bit on what type of missing information you are looking for? Fields which are not populated?&lt;/P&gt;&lt;P&gt;The ISTEXT() or ISNUM() or LEN() or ISNULL() functions might prove helpful in that case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 06:57:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929509#M321430</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-09-24T06:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: How get Missing table Information ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929510#M321431</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;FOR Each File in FileList('C:\1\*.xlsx')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vRowsBefore=NoOfRows('Employee');&lt;/P&gt;&lt;P&gt;Employee:&lt;/P&gt;&lt;P&gt;LOAD EmpId, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EmpName, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EmpType, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sal&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;'$(File)'(ooxml, embedded labels, table is EmpDetails);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vRowsAfter=NoOfRows('Employee');&lt;/P&gt;&lt;P&gt;if vRowsBefore=vRowsAfter then&lt;/P&gt;&lt;P&gt; Error:&lt;/P&gt;&lt;P&gt;&amp;nbsp; load&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(File)' As File,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Field Values Not Found' As DetailErr&lt;/P&gt;&lt;P&gt;&amp;nbsp; AutoGenerate (1);&lt;/P&gt;&lt;P&gt;end if;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ErrorQvd:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;FileName() as FileName,&lt;/P&gt;&lt;P&gt;'$(File)' as FilePath, &lt;/P&gt;&lt;P&gt;if(len('$(ScriptErrorDetails)')=0,'No Error','$(ScriptErrorDetails)') as ErrorDetails,&lt;/P&gt;&lt;P&gt;ReloadTime() as [Reloaded Date and Time]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;'$(File)'(ooxml, embedded labels, table is EmpDetails);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next File&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET Errormode=1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 07:02:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929510#M321431</guid>
      <dc:creator>pokassov</dc:creator>
      <dc:date>2015-09-24T07:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: How get Missing table Information ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929511#M321432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; Sergey Pokasov&lt;/P&gt;&lt;P&gt;Thanks for you reply&lt;/P&gt;&lt;P&gt;Note :&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;let vRowsAfter=NoOfRows('Employee');&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;What is 'Employee' ?&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;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 07:14:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929511#M321432</guid>
      <dc:creator>madhubabum</dc:creator>
      <dc:date>2015-09-24T07:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: How get Missing table Information ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929512#M321433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's a table's name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 07:18:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929512#M321433</guid>
      <dc:creator>pokassov</dc:creator>
      <dc:date>2015-09-24T07:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: How get Missing table Information ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929513#M321434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What's left unclear here: &lt;A href="https://community.qlik.com/thread/181631"&gt;how to skip a Excel Workbook ?&lt;/A&gt; and here: &lt;A href="https://community.qlik.com/thread/182062"&gt;how to find missing table information ?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 15:23:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929513#M321434</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-09-24T15:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: How get Missing table Information ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929514#M321435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus Sommer&lt;/P&gt;&lt;P&gt;I want Missing Error Field Details , as following&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="99981" alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99981_Untitled.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Note : These values must and should associate to the Error_Files&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached Application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 16:03:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929514#M321435</guid>
      <dc:creator>madhubabum</dc:creator>
      <dc:date>2015-09-24T16:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: How get Missing table Information ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929515#M321436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sergey Pokasov&lt;/P&gt;&lt;P&gt;Thanks For giving Solution, but i need one more information to add to Error table i.e Missing EmpDetails from file&amp;nbsp; i.e We are using other Excel file With out EmpDetails Sheet (Blank file with EmpDetails Missing), We need this as Missing EmpDetails sheet&amp;nbsp; in file. &lt;/P&gt;&lt;P&gt;How to Achieve this&amp;nbsp; ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Sep 2015 07:07:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-get-Missing-table-Information/m-p/929515#M321436</guid>
      <dc:creator>madhubabum</dc:creator>
      <dc:date>2015-09-26T07:07:19Z</dc:date>
    </item>
  </channel>
</rss>

