<?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: where clause Question in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207812#M387923</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds like a plan &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Oct 2016 21:43:36 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-10-07T21:43:36Z</dc:date>
    <item>
      <title>where clause Question</title>
      <link>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207809#M387920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to load all rows besides the first 2 in below table. my code is under, it is not working. any clue?&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 303px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="150"&gt;Date&lt;/TD&gt;&lt;TD width="153"&gt;File name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl64" height="20"&gt;1/17/2015&lt;/TD&gt;&lt;TD class="xl65"&gt;abc&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl64" height="20"&gt;1/17/2015&lt;/TD&gt;&lt;TD class="xl65"&gt;def&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;1/17/2015&lt;/TD&gt;&lt;TD&gt;ghj&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;3/21/2015&lt;/TD&gt;&lt;TD&gt;abc&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;3/21/2015&lt;/TD&gt;&lt;TD&gt;def&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;3/21/2015&lt;/TD&gt;&lt;TD&gt;ghj&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;4/12/2016&lt;/TD&gt;&lt;TD&gt;abc&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;4/12/2016&lt;/TD&gt;&lt;TD&gt;def&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;4/12/2016&lt;/TD&gt;&lt;TD&gt;ghj&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From [one.qvd](qvd)&lt;/P&gt;&lt;P&gt;where&amp;nbsp; ([Date] &amp;lt;&amp;gt; '1/17/2016' and [File name] &amp;lt;&amp;gt; 'abc')&lt;/P&gt;&lt;P&gt;or&amp;nbsp; ([Date] &amp;lt;&amp;gt; '1/17/2016' and [File name] &amp;lt;&amp;gt; 'def');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried: but no success&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;where not&amp;nbsp; ([Date] = '1/17/2016' and [File name] = 'abc')&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;or&amp;nbsp; ([Date] = '1/17/2016' and [File name] = 'def');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2016 21:10:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207809#M387920</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-07T21:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: where clause Question</title>
      <link>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207810#M387921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seems to be working:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, File name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/17/2015, abc&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/17/2015, def&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/17/2015, ghj&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3/21/2015, abc&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3/21/2015, def&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3/21/2015, ghj&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4/12/2016, abc&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4/12/2016, def&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4/12/2016, ghj&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="color: #ff0000;"&gt;Where not (Date = MakeDate(2015, 1, 17) and Match([File name], 'abc', 'def'))&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2016 21:14:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207810#M387921</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-07T21:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: where clause Question</title>
      <link>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207811#M387922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sunny, you never miss your target. it worked like a charm. Thank you so much. however I have some questions which I will post later.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2016 21:42:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207811#M387922</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-07T21:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: where clause Question</title>
      <link>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207812#M387923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds like a plan &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2016 21:43:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207812#M387923</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-07T21:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: where clause Question</title>
      <link>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207813#M387924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried without the make date :&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;where Not ([Date] = '1/17/2016' &lt;/SPAN&gt;&lt;SPAN style="color: #575757;"&gt;and Match([File name], 'abc', 'def')); This works.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;But this one should also work logic wise:&amp;nbsp; where ([Date] &amp;lt;&amp;gt; '1/17/2016' and File name &amp;lt;&amp;gt; 'abc')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt; or ([Date] &amp;lt;&amp;gt; '1/17/2016' and File name &amp;lt;&amp;gt; 'def');&lt;SPAN style="color: #575757;"&gt;any idea why &lt;/SPAN&gt; this is not working. In my sample app, it did not load any data for 1/17/2016.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 22:52:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207813#M387924</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-12T22:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: where clause Question</title>
      <link>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207814#M387925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think ands and ors are off... try this:&lt;/P&gt;&lt;P&gt;&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="font-weight: inherit; font-style: inherit; font-family: inherit; color: #575757;"&gt;&lt;STRONG&gt;Where ([Date] &amp;lt;&amp;gt; '1/17/2016' or File name &amp;lt;&amp;gt; 'abc') &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #575757; font-family: inherit; font-style: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;and ([Date] &amp;lt;&amp;gt; '1/17/2016' or File name &amp;lt;&amp;gt; 'def');&lt;/STRONG&gt;&lt;/SPAN&gt;&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;or&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;&lt;SPAN style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;Where ([Date] &amp;lt;&amp;gt; '1/17/2016' or (File name &amp;lt;&amp;gt; 'abc' &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;and File name &amp;lt;&amp;gt; 'def'));&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 23:44:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207814#M387925</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-12T23:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: where clause Question</title>
      <link>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207815#M387926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;both of your codes worked. Thank you. I need to reassess my logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2016 16:19:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-clause-Question/m-p/1207815#M387926</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-13T16:19:10Z</dc:date>
    </item>
  </channel>
</rss>

