<?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: Removing matching values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669978#M243473</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vowels:&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Field1&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;&lt;P&gt;I&lt;/P&gt;&lt;P&gt;O&lt;/P&gt;&lt;P&gt;U&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alphabet:&lt;/P&gt;&lt;P&gt;load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Field2&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;&lt;P&gt;F&lt;/P&gt;&lt;P&gt;G&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;P&gt;I&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;K&lt;/P&gt;&lt;P&gt;L&lt;/P&gt;&lt;P&gt;M&lt;/P&gt;&lt;P&gt;N&lt;/P&gt;&lt;P&gt;O&lt;/P&gt;&lt;P&gt;P&lt;/P&gt;&lt;P&gt;Q&lt;/P&gt;&lt;P&gt;R&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;P&gt;T&lt;/P&gt;&lt;P&gt;U&lt;/P&gt;&lt;P&gt;V&lt;/P&gt;&lt;P&gt;W&lt;/P&gt;&lt;P&gt;X&lt;/P&gt;&lt;P&gt;Y&lt;/P&gt;&lt;P&gt;Z&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Where not Exists(Field1,Field2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Aug 2014 06:19:25 GMT</pubDate>
    <dc:creator>ashfaq_haseeb</dc:creator>
    <dc:date>2014-08-13T06:19:25Z</dc:date>
    <item>
      <title>Removing matching values</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669976#M243471</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;Till now I have worked with joins and worked out well.&lt;/P&gt;&lt;P&gt;Now i have an opposite use of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two Excel Tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets say&lt;/P&gt;&lt;P&gt;One:&lt;/P&gt;&lt;P&gt;the field Alphabets and having values from a to z&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second:&lt;/P&gt;&lt;P&gt;The Field Vowels having values a,e,i,o,u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I want to remove the vowels from my table One without hardcoding.&lt;/P&gt;&lt;P&gt;Can I implement it in the load script in a way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 06:12:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669976#M243471</guid>
      <dc:creator />
      <dc:date>2014-08-13T06:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Removing matching values</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669977#M243472</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;First Load the one which you want to remove, so in your case Vowels.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then load second table from where you want to remove, in your case a to z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use the exists function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample script will be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Vowels from xyz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Alphabets from pqr where not exists (Vowels,Alphabets);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 06:17:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669977#M243472</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2014-08-13T06:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Removing matching values</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669978#M243473</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vowels:&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Field1&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;&lt;P&gt;I&lt;/P&gt;&lt;P&gt;O&lt;/P&gt;&lt;P&gt;U&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alphabet:&lt;/P&gt;&lt;P&gt;load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Field2&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;&lt;P&gt;F&lt;/P&gt;&lt;P&gt;G&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;P&gt;I&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;K&lt;/P&gt;&lt;P&gt;L&lt;/P&gt;&lt;P&gt;M&lt;/P&gt;&lt;P&gt;N&lt;/P&gt;&lt;P&gt;O&lt;/P&gt;&lt;P&gt;P&lt;/P&gt;&lt;P&gt;Q&lt;/P&gt;&lt;P&gt;R&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;P&gt;T&lt;/P&gt;&lt;P&gt;U&lt;/P&gt;&lt;P&gt;V&lt;/P&gt;&lt;P&gt;W&lt;/P&gt;&lt;P&gt;X&lt;/P&gt;&lt;P&gt;Y&lt;/P&gt;&lt;P&gt;Z&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Where not Exists(Field1,Field2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 06:19:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669978#M243473</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-08-13T06:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Removing matching values</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669979#M243474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah you can use where exist function for your case &lt;/P&gt;&lt;P&gt;first load the table which have vowels then load another tables which have data upto a to z. then use where not exist function.&lt;/P&gt;&lt;P&gt;try below script&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;F2&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;i&lt;/P&gt;&lt;P&gt;o&lt;/P&gt;&lt;P&gt;u&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;F1&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;f&lt;/P&gt;&lt;P&gt;]Where not Exists(F2,F1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 06:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669979#M243474</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2014-08-13T06:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Removing matching values</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669980#M243475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all so much... Problem solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 06:29:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-matching-values/m-p/669980#M243475</guid>
      <dc:creator />
      <dc:date>2014-08-13T06:29:13Z</dc:date>
    </item>
  </channel>
</rss>

