<?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: Compare Excel data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Compare-Excel-data/m-p/354303#M131507</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create a field on resigned excel called Flag_Resigned and set all to 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set the employee name the same on both excel and load them with a join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The idea:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEMP_DATA&lt;/P&gt;&lt;P&gt;Load EMPLOYEE_TEMP, OTHER_COLS_TEMP&lt;/P&gt;&lt;P&gt;from all.xls ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load EMPLOYEE_TEMP, FLAG_RESIGNED_TEMP&lt;/P&gt;&lt;P&gt;from resigned.xls ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FINAL_DATA:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;EMPLOYEE_TEMP as EMPLOYEE,&lt;/P&gt;&lt;P&gt;OTHER_COLS_TEMP as OTHER_COLS,&lt;/P&gt;&lt;P&gt;if( isNull(FLAG_RESIGNED_TEMP), 0, FLAG_RESIGNED_TEMP) as FLAG_RESIGNED&lt;/P&gt;&lt;P&gt;resident TEMP_DATA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table TEMP_DATA;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jul 2012 14:04:28 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-17T14:04:28Z</dc:date>
    <item>
      <title>Compare Excel data</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Excel-data/m-p/354302#M131506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp; have two excel files with employee details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All Employees&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resigned Employess&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load the two excels and display only the employes who are working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2012 13:30:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Excel-data/m-p/354302#M131506</guid>
      <dc:creator />
      <dc:date>2012-07-17T13:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Compare Excel data</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Excel-data/m-p/354303#M131507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create a field on resigned excel called Flag_Resigned and set all to 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set the employee name the same on both excel and load them with a join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The idea:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEMP_DATA&lt;/P&gt;&lt;P&gt;Load EMPLOYEE_TEMP, OTHER_COLS_TEMP&lt;/P&gt;&lt;P&gt;from all.xls ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load EMPLOYEE_TEMP, FLAG_RESIGNED_TEMP&lt;/P&gt;&lt;P&gt;from resigned.xls ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FINAL_DATA:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;EMPLOYEE_TEMP as EMPLOYEE,&lt;/P&gt;&lt;P&gt;OTHER_COLS_TEMP as OTHER_COLS,&lt;/P&gt;&lt;P&gt;if( isNull(FLAG_RESIGNED_TEMP), 0, FLAG_RESIGNED_TEMP) as FLAG_RESIGNED&lt;/P&gt;&lt;P&gt;resident TEMP_DATA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table TEMP_DATA;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2012 14:04:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Excel-data/m-p/354303#M131507</guid>
      <dc:creator />
      <dc:date>2012-07-17T14:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Compare Excel data</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Excel-data/m-p/354304#M131508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following script logic will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AllEmployees:&lt;/P&gt;&lt;P&gt;load ID from [All Employees];&lt;/P&gt;&lt;P&gt;Left Join Load ID, 1 as Flag from [Resigned Employees];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CurrentEmployees:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;load ID resident AllEmployees where Flag &amp;lt;&amp;gt; 1;&lt;/P&gt;&lt;P&gt;left Join load * from [All Employees];&amp;nbsp; // to load all data of each employee&lt;/P&gt;&lt;P&gt;Drop Table AllEmployees;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2012 22:57:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Excel-data/m-p/354304#M131508</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2012-07-17T22:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Compare Excel data</title>
      <link>https://community.qlik.com/t5/QlikView/Compare-Excel-data/m-p/354305#M131509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd load the resigned employees first, and load all employees after that with condition&lt;/P&gt;&lt;P&gt;where not exists(&amp;lt;resigned employee id&amp;gt;, &amp;lt;all emplyee id&amp;gt;)&lt;/P&gt;&lt;P&gt;After that, drop the resigned table if it is not needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2012 23:45:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Compare-Excel-data/m-p/354305#M131509</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-17T23:45:26Z</dc:date>
    </item>
  </channel>
</rss>

