<?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: Excluding Rows on Load with WHERE AND in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Excluding-Rows-on-Load-with-WHERE-AND/m-p/1057996#M637951</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thank You,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I must have misrepresented my original question, but your solution is correct except I changed the "OR" to "AND" to apply the filter to both situations I am trying to prevent from loading.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE NOT WildMatch ([Plant Number] , '10844', '10846')&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;OR&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;AND&lt;/STRONG&gt;&amp;nbsp; ( [Plant Number] &amp;lt;&amp;gt; '20531' AND [Material Number] &amp;lt;&amp;gt; 'AG6604');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Mar 2016 16:42:10 GMT</pubDate>
    <dc:creator>tomdabek</dc:creator>
    <dc:date>2016-03-23T16:42:10Z</dc:date>
    <item>
      <title>Excluding Rows on Load with WHERE AND</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-Rows-on-Load-with-WHERE-AND/m-p/1057994#M637949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, New user to Qlikview and trying to exclude certain rows with my load statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ..........&lt;/P&gt;&lt;P&gt;FROM [$(vPath)\*.xlsx] &lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is QLIK)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WHERE NOT WildMatch ([Plant Number] , '10844', '10846')&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR (NOT [Plant Number] = '20531' AND [Material Number] = 'AG6604'); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 1st part works, any entry in the data where [Plant Number] is 10844 or 10846 is excluded&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, all records for [Plant Number] 20531 are excluded when I only want the ones where the [Material Number] is AG6604 excluded&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried a few combinations but am unable to figure out how to exclude loading a row using a rule that includes two (or more)&amp;nbsp; of the columns in the criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 13:37:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-Rows-on-Load-with-WHERE-AND/m-p/1057994#M637949</guid>
      <dc:creator>tomdabek</dc:creator>
      <dc:date>2016-03-23T13:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding Rows on Load with WHERE AND</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-Rows-on-Load-with-WHERE-AND/m-p/1057995#M637950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try this:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE NOT WildMatch ([Plant Number] , '10844', '10846') &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;OR ( [Plant Number] &amp;lt;&amp;gt; '20531' AND [Material Number] &amp;lt;&amp;gt; 'AG6604');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 16:22:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-Rows-on-Load-with-WHERE-AND/m-p/1057995#M637950</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-03-23T16:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding Rows on Load with WHERE AND</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-Rows-on-Load-with-WHERE-AND/m-p/1057996#M637951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thank You,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I must have misrepresented my original question, but your solution is correct except I changed the "OR" to "AND" to apply the filter to both situations I am trying to prevent from loading.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE NOT WildMatch ([Plant Number] , '10844', '10846')&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;OR&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;AND&lt;/STRONG&gt;&amp;nbsp; ( [Plant Number] &amp;lt;&amp;gt; '20531' AND [Material Number] &amp;lt;&amp;gt; 'AG6604');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 16:42:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-Rows-on-Load-with-WHERE-AND/m-p/1057996#M637951</guid>
      <dc:creator>tomdabek</dc:creator>
      <dc:date>2016-03-23T16:42:10Z</dc:date>
    </item>
  </channel>
</rss>

