<?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 statement in data load editor in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755568#M58263</link>
    <description>&lt;P&gt;Both, Thank you so much for your input.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;- this is perfect and did exactly what i needed to do.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;- thank you for explaining this to me, makes much more sense.&lt;/P&gt;&lt;P&gt;Thank you all!&lt;/P&gt;</description>
    <pubDate>Fri, 23 Oct 2020 18:24:52 GMT</pubDate>
    <dc:creator>QlikBeginner1</dc:creator>
    <dc:date>2020-10-23T18:24:52Z</dc:date>
    <item>
      <title>WHERE statement in data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755485#M58255</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;This may be a simple solution, however I have been trying to get this to work but unable to.&lt;/P&gt;&lt;P&gt;I am creating a reconciliation app, and trying to limit the load based off a date field.&lt;/P&gt;&lt;P&gt;The date field is 'TransactionEffectiveDate'. In the back end I use this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FROM [lib://QVD/DTL\TransactionEntry.QVD] (qvd)&lt;BR /&gt;where TransactionEntrySourceSystemName = 'COGEN' or TransactionEntrySourceSystemName = 'Acturis BE' and &lt;STRONG&gt;date(floor(TransactionEffectiveDate)) &amp;gt;= '01-01-2019';&amp;nbsp;&lt;/STRONG&gt;however, it still loads all dates?&lt;/P&gt;&lt;P&gt;How can I restrict this so that the app only loads where the TransactionEffectiveDate is greater then 01/01/2019? so not loading any dates previous to that date? Thanks in advance&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QlikBeginner1_0-1603462755637.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/42935i7E6B78A3E1C18BD0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QlikBeginner1_0-1603462755637.png" alt="QlikBeginner1_0-1603462755637.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 17:55:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755485#M58255</guid>
      <dc:creator>QlikBeginner1</dc:creator>
      <dc:date>2024-11-16T17:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE statement in data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755496#M58256</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/74945"&gt;@QlikBeginner1&lt;/a&gt;&amp;nbsp; try below&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;where match(TransactionEntrySourceSystemName , 'COGEN' ,'Acturis BE' ) and&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;floor(TransactionEffectiveDate)&amp;gt;= floor(makedate(2019,1,1))&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 14:45:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755496#M58256</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-10-23T14:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE statement in data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755563#M58262</link>
      <description>&lt;P&gt;The where clause is evaluated using the rules of boolean algebra. The order of operations for Boolean algebra, from highest to lowest priority is NOT, then AND, then OR. Expressions inside brackets are always evaluated first.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your case, if&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;TransactionEntrySourceSystemName = 'COGEN'&lt;/FONT&gt;&amp;nbsp; is true, the record will be included regardless of the date.&amp;nbsp; If you write out your expression like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;true OR false AND false&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You can see that evaluating AND first results in your entire expression being true.&amp;nbsp; You can clarify your intent by surrounding the the &lt;FONT face="courier new,courier"&gt;TransactionEntrySourceSystemName&lt;/FONT&gt; tests with parens:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;(true OR false)&amp;nbsp; AND false&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;or using the match() function as&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;suggested, effectively combining the two.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 18:14:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755563#M58262</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2020-10-23T18:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE statement in data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755568#M58263</link>
      <description>&lt;P&gt;Both, Thank you so much for your input.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;- this is perfect and did exactly what i needed to do.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;- thank you for explaining this to me, makes much more sense.&lt;/P&gt;&lt;P&gt;Thank you all!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 18:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755568#M58263</guid>
      <dc:creator>QlikBeginner1</dc:creator>
      <dc:date>2020-10-23T18:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: WHERE statement in data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755600#M58266</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/74945"&gt;@QlikBeginner1&lt;/a&gt;&amp;nbsp; Please close this thread by accepting solution&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 21:15:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/WHERE-statement-in-data-load-editor/m-p/1755600#M58266</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-10-23T21:15:42Z</dc:date>
    </item>
  </channel>
</rss>

