<?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 Exclusion List should take from Excel for LOAD Script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclusion-List-should-take-from-Excel-for-LOAD-Script/m-p/1764896#M454212</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;This is the code...used in the SCRIPT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INC:&lt;/STRONG&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;CUST_NAME,&lt;BR /&gt;POT_VAR,&lt;BR /&gt;STEP_ITEM,&lt;BR /&gt;DAM_NAME,&lt;BR /&gt;CAN_ID,&lt;BR /&gt;M_ID,&lt;BR /&gt;POL_NAME&lt;BR /&gt;FROM&lt;BR /&gt;[&lt;STRONG&gt;D:\Users\LL4356\INC.qvd](qvd)&lt;/STRONG&gt;&lt;BR /&gt;WHERE&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;MATCH(POT_VAR,'ListShould Take from Excel') AND &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;NOT MATCH(CUST_NAME,'ListShould Take from Excel') AND &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;CAN_ID &amp;lt;&amp;gt; 'ListShould Take from Excel' AND &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;NOT WILDMATCH(POL_NAME,'ListShould Take from Excel');&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Exclusion List is not constant and will be controlled by the User.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check the Excel and let me know how to use in the LOAD SCRIPT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vepuri LK&lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2024 23:33:00 GMT</pubDate>
    <dc:creator>lakshmanvepuri</dc:creator>
    <dc:date>2024-11-15T23:33:00Z</dc:date>
    <item>
      <title>Exclusion List should take from Excel for LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclusion-List-should-take-from-Excel-for-LOAD-Script/m-p/1764896#M454212</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;This is the code...used in the SCRIPT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INC:&lt;/STRONG&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;CUST_NAME,&lt;BR /&gt;POT_VAR,&lt;BR /&gt;STEP_ITEM,&lt;BR /&gt;DAM_NAME,&lt;BR /&gt;CAN_ID,&lt;BR /&gt;M_ID,&lt;BR /&gt;POL_NAME&lt;BR /&gt;FROM&lt;BR /&gt;[&lt;STRONG&gt;D:\Users\LL4356\INC.qvd](qvd)&lt;/STRONG&gt;&lt;BR /&gt;WHERE&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;MATCH(POT_VAR,'ListShould Take from Excel') AND &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;NOT MATCH(CUST_NAME,'ListShould Take from Excel') AND &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;CAN_ID &amp;lt;&amp;gt; 'ListShould Take from Excel' AND &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;NOT WILDMATCH(POL_NAME,'ListShould Take from Excel');&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Exclusion List is not constant and will be controlled by the User.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check the Excel and let me know how to use in the LOAD SCRIPT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vepuri LK&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:33:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclusion-List-should-take-from-Excel-for-LOAD-Script/m-p/1764896#M454212</guid>
      <dc:creator>lakshmanvepuri</dc:creator>
      <dc:date>2024-11-15T23:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Exclusion List should take from Excel for LOAD Script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclusion-List-should-take-from-Excel-for-LOAD-Script/m-p/1764907#M454213</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18634"&gt;@lakshmanvepuri&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try like below&lt;/P&gt;&lt;P&gt;LOAD chr(39)&amp;amp;Concat(CUST_NAME, chr(39)&amp;amp;','&amp;amp;chr(39))&amp;amp;chr(39) as CustName,&lt;BR /&gt;chr(39)&amp;amp;Concat(POT_VAR, chr(39)&amp;amp;','&amp;amp;chr(39))&amp;amp;chr(39) as PotVar,&lt;BR /&gt;chr(39)&amp;amp;Concat(CAN_ID, chr(39)&amp;amp;','&amp;amp;chr(39))&amp;amp;chr(39) as CanId,&lt;BR /&gt;chr(39)&amp;amp;Concat(POL_NAME, chr(39)&amp;amp;','&amp;amp;chr(39))&amp;amp;chr(39) as PolName&lt;BR /&gt;FROM&lt;BR /&gt;[D:\Qlik\personnal\List.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is ExclusionList);&lt;/P&gt;&lt;P&gt;Let vCustName = Peek('CustName');&lt;BR /&gt;Let vPotVar = Peek('PotVar');&lt;BR /&gt;Let vCanId = Peek('CanId');&lt;BR /&gt;Let vPolName = Peek('PolName');&lt;/P&gt;&lt;P&gt;Load * from yoursource where &lt;FONT color="#FF0000"&gt;MATCH(POT_VAR,$(vPotVar)) AND&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;NOT MATCH(CUST_NAME,$(vCustName)) AND&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;CAN_ID &amp;lt;&amp;gt; $(vCanId) AND&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;NOT WILDMATCH(POL_NAME,$(vPolName));&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2020 10:12:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclusion-List-should-take-from-Excel-for-LOAD-Script/m-p/1764907#M454213</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-27T10:12:41Z</dc:date>
    </item>
  </channel>
</rss>

