<?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: load atuo compare in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731736#M721868</link>
    <description>&lt;P&gt;I am confused ..&lt;/P&gt;&lt;P&gt;I have so many fields in Table A how can i write ur sript example ?&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jul 2020 12:02:58 GMT</pubDate>
    <dc:creator>smilingjohn</dc:creator>
    <dc:date>2020-07-29T12:02:58Z</dc:date>
    <item>
      <title>load atuo compare</title>
      <link>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731720#M721866</link>
      <description>&lt;P&gt;Hi All ,&lt;/P&gt;&lt;P&gt;I have two tables in my Load script . Which is&amp;nbsp; making the link using 'Customer ID' Now Table A has lots of data ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i want to load only that data whiere the CutomerID of Table B matches with the Customer ID of Table A .&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I achive this ? I know i can use where function and need to specify manaul entries of the Customer ID's which is a headache.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest how can I make this automated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table A:&lt;/P&gt;&lt;P&gt;Load&amp;nbsp;&lt;/P&gt;&lt;P&gt;Department,&lt;/P&gt;&lt;P&gt;Section,&lt;/P&gt;&lt;P&gt;Sales,&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;Region,&lt;/P&gt;&lt;P&gt;Customer_ID&lt;/P&gt;&lt;P&gt;From......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table B:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Business,&lt;/P&gt;&lt;P&gt;Products,&lt;/P&gt;&lt;P&gt;Parcels,&lt;/P&gt;&lt;P&gt;Category,&lt;/P&gt;&lt;P&gt;Customer_ID,&lt;/P&gt;&lt;P&gt;From....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731720#M721866</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: load atuo compare</title>
      <link>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731732#M721867</link>
      <description>&lt;P&gt;use exists() function in where clause. this also keeps the optmized load.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/de-DE/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/Scripting/InterRecordFunctions/Exists.htm" target="_blank"&gt;Exists - Skriptfunktion &amp;amp;#x2012; QlikView&lt;/A&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;A:
Load
Department,
Customer_ID 

B:
Load 
A,
B,
Customer_ID
where exists(Customer_ID)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 11:58:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731732#M721867</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2020-07-29T11:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: load atuo compare</title>
      <link>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731736#M721868</link>
      <description>&lt;P&gt;I am confused ..&lt;/P&gt;&lt;P&gt;I have so many fields in Table A how can i write ur sript example ?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 12:02:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731736#M721868</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-07-29T12:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: load atuo compare</title>
      <link>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731737#M721869</link>
      <description>&lt;P&gt;just add this line in the second load Statement.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;where exists(Customer_ID)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;if you want to check more fields go like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;where exists(Customer_ID)
  and exists(Department)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 29 Jul 2020 12:05:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731737#M721869</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2020-07-29T12:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: load atuo compare</title>
      <link>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731739#M721870</link>
      <description>&lt;P&gt;Thanks for the reply&amp;nbsp;&lt;/P&gt;&lt;P&gt;PLease find the attachment of the QVW.&lt;/P&gt;&lt;P&gt;I want to keep my table and the fields as it is .&amp;nbsp;&lt;/P&gt;&lt;P&gt;In tableA there are 26 Customer ID&amp;nbsp; and in Table 2 there are only 9 customer ID .&lt;/P&gt;&lt;P&gt;I want to load Table A data related to only 9 Customer ID's of Table B .&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 12:30:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731739#M721870</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-07-29T12:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: load atuo compare</title>
      <link>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731741#M721871</link>
      <description>&lt;P&gt;in that case just load table B first and then Load Table A with where exists()&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TableB:
LOAD CustomerID, 
     ITComp, 
     Are, 
     Sales, 
     Gravity
FROM [C:\APP\TestData.xlsx] (ooxml, embedded labels, table is Sheet4)
;

TableA:
LOAD CustomerID, 
     Deoartment, 
     Product, 
     Region, 
     Incometx, 
     FloorID
FROM [C:\APP\TestData.xlsx] (ooxml, embedded labels, table is Sheet1)
where exists(CustomerID);&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 29 Jul 2020 12:33:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-atuo-compare/m-p/1731741#M721871</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2020-07-29T12:33:56Z</dc:date>
    </item>
  </channel>
</rss>

