<?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 Not Exists not working in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503770#M103664</link>
    <description>&lt;P&gt;Make further sure that nothing has changed in regard to the load-order because exists() refers to already loaded field-values.&lt;/P&gt;</description>
    <pubDate>Thu, 30 Jan 2025 14:32:22 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2025-01-30T14:32:22Z</dc:date>
    <item>
      <title>Where Not Exists not working</title>
      <link>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503220#M103594</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;I have this code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;VendutoA:&lt;BR /&gt;LOAD&lt;/P&gt;
&lt;P&gt;"Indirizzo 2" as "Vendere a - Indirizzo 2",&lt;BR /&gt;Indirizzo as "Vendere a - Indirizzo",&lt;BR /&gt;Città as "Vendere a - Città",&lt;BR /&gt;// '' as "Vendere a - Contatto",&lt;BR /&gt;"Cod. paese" as "Vendere a - Cod. paese/area geografica",&lt;BR /&gt;Provincia as "Vendere a - Prov.",&lt;BR /&gt;"Nome 2" as "Vendere a - Nome 2",&lt;BR /&gt;Nome as "Vendere a - Nome",&lt;BR /&gt;CAP as "Vendere a - CAP",&lt;BR /&gt;"Cod. regione" as "Vendere a - Regione",&lt;BR /&gt;Timestamp(Date("Data Inserimento", 'YYYY-MM-DD hh:mm:ss'), 'YYYY-MM-DD hh:mm:ss.000000') as "Vendere a - Data Inserimento",&lt;BR /&gt;Timestamp(Date("Data Ultima Modifica", 'YYYY-MM-DD hh:mm:ss'), 'YYYY-MM-DD hh:mm:ss.000000') as "Vendere a - Data Ultima Modifica",&lt;BR /&gt;"Nr." as §_DimVendutoA&lt;/P&gt;
&lt;P&gt;FROM [$(vPath)St_Clienti.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;
&lt;P&gt;GeoOutput_tmp:&lt;BR /&gt;LOAD Distinct&lt;BR /&gt;§_DimVendutoA as CheckPresenza&lt;BR /&gt;FROM [lib://GeoXXX:DataFiles/GeoOutput_*.csv] (txt, utf8, embedded labels, delimiter is ';');&lt;/P&gt;
&lt;P&gt;GeoInput:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;Load * Resident VendutoA&lt;BR /&gt;Where "Vendere a - Data Ultima Modifica"&amp;gt;=Date(Today()-5) or "Vendere a - Data Inserimento"&amp;gt;=Date(Today()-5) or &lt;BR /&gt;not Exists(CheckPresenza,§_DimVendutoA);&lt;/P&gt;
&lt;P&gt;Drop Table VendutoA, GeoOutput;&lt;/P&gt;
&lt;P&gt;exit script;&lt;BR /&gt;&lt;BR /&gt;In Qlik Enterprise, GeoInput table produces an output of 923 lines, instead in Cloud I have 32059. If I eliminate "not Exists(CheckPresenza,§_DimVendutoA)", in Cloud I get 923 lines, the exact number of lines I'm expecting. Is there something different to consider in Cloud when doing this kind of function?&lt;BR /&gt;CheckPresenza and&amp;nbsp;§_DimVendutoA are both the same, no spaces/blank characters, both strings.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Lemmy&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2025 09:25:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503220#M103594</guid>
      <dc:creator>Lemmyduke1</dc:creator>
      <dc:date>2025-01-28T09:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not Exists not working</title>
      <link>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503233#M103595</link>
      <description>&lt;P&gt;Are you sure that the files you are loading contain the exact same data in your on-prem environment and in your saas environment?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2025 09:59:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503233#M103595</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2025-01-28T09:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not Exists not working</title>
      <link>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503770#M103664</link>
      <description>&lt;P&gt;Make further sure that nothing has changed in regard to the load-order because exists() refers to already loaded field-values.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 14:32:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503770#M103664</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-01-30T14:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not Exists not working</title>
      <link>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503772#M103665</link>
      <description>&lt;P&gt;I think this one may be about the magic of not parenthesizing your OR statements and the Not Exists is a red herring. &lt;/P&gt;
&lt;P&gt;Try:&lt;/P&gt;
&lt;P&gt;Where ("Vendere a - Data Ultima Modifica"&amp;gt;=Date(Today()-5) or "Vendere a - Data Inserimento"&amp;gt;=Date(Today()-5)) or&lt;BR /&gt;not Exists(CheckPresenza,§_DimVendutoA);&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 14:47:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503772#M103665</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2025-01-30T14:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not Exists not working</title>
      <link>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503773#M103666</link>
      <description>&lt;P&gt;Thanks everyone, I was missing some files from prem environment.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2025 14:45:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Where-Not-Exists-not-working/m-p/2503773#M103666</guid>
      <dc:creator>Lemmyduke1</dc:creator>
      <dc:date>2025-01-30T14:45:05Z</dc:date>
    </item>
  </channel>
</rss>

