<?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 check if there is a record in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/check-if-there-is-a-record/m-p/169376#M1312517</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;I've got this statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;&lt;BR /&gt;TABLE:&lt;BR /&gt;LOAD&lt;BR /&gt; BMENG AS OrderIntake&lt;BR /&gt; ,'$(vDatum)' AS Datum&lt;BR /&gt;FROM [some.qvd] (qvd)&lt;BR /&gt;WHERE [Vorige datum_VDATU] = '$(vDate)'&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;If this date doens't exist I still want to add this date but with OrderIntake as 0.&lt;/P&gt;&lt;P&gt;Is this possible? If Yes how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Rey-man&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
    <dc:creator />
    <dc:date>2026-01-26T18:19:17Z</dc:date>
    <item>
      <title>check if there is a record</title>
      <link>https://community.qlik.com/t5/QlikView/check-if-there-is-a-record/m-p/169376#M1312517</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;I've got this statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;&lt;BR /&gt;TABLE:&lt;BR /&gt;LOAD&lt;BR /&gt; BMENG AS OrderIntake&lt;BR /&gt; ,'$(vDatum)' AS Datum&lt;BR /&gt;FROM [some.qvd] (qvd)&lt;BR /&gt;WHERE [Vorige datum_VDATU] = '$(vDate)'&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;If this date doens't exist I still want to add this date but with OrderIntake as 0.&lt;/P&gt;&lt;P&gt;Is this possible? If Yes how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Rey-man&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/check-if-there-is-a-record/m-p/169376#M1312517</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>check if there is a record</title>
      <link>https://community.qlik.com/t5/QlikView/check-if-there-is-a-record/m-p/169377#M1312519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rey-man,&lt;BR /&gt;&lt;BR /&gt;Try this code along with your existing code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;concatenate(TABLE)&lt;BR /&gt;Load&lt;BR /&gt;0 as OrderIntake,&lt;BR /&gt;'$(vDatum)' as Datum&lt;BR /&gt;from qvd&lt;BR /&gt;where not exists([Vorige datum_VDATU],'$(vDate)');&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this works for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 18:49:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/check-if-there-is-a-record/m-p/169377#M1312519</guid>
      <dc:creator />
      <dc:date>2009-10-21T18:49:41Z</dc:date>
    </item>
    <item>
      <title>check if there is a record</title>
      <link>https://community.qlik.com/t5/QlikView/check-if-there-is-a-record/m-p/169378#M1312524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the reply.&lt;/P&gt;&lt;P&gt;Is there a way to look if it doesn't exist after some while criteria?&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;status must be '0000'&lt;/P&gt;&lt;P&gt;and organisationnumber must be 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&amp;lt;pre&amp;gt;&lt;BR /&gt;concatenate(TABLE)&lt;BR /&gt;Load&lt;BR /&gt;0 as OrderIntake,&lt;BR /&gt;'$(vDatum)' as Datum&lt;BR /&gt;from qvd&lt;BR /&gt;where status = '0000'&lt;BR /&gt;AND organisation = 1&lt;BR /&gt;AND not exists([Vorige datum_VDATU],'$(vDate)');&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Rey-man&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 19:05:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/check-if-there-is-a-record/m-p/169378#M1312524</guid>
      <dc:creator />
      <dc:date>2009-10-21T19:05:24Z</dc:date>
    </item>
    <item>
      <title>check if there is a record</title>
      <link>https://community.qlik.com/t5/QlikView/check-if-there-is-a-record/m-p/169379#M1312526</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;I've got the solution. Maybe it can ben better, but this works.&lt;/P&gt;&lt;P&gt;First I've created the table with the where statements in. Next I used that table to check if a date exists.&lt;/P&gt;&lt;P&gt;With your Concatenate statement it works fine now.&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Rey-man&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 20:08:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/check-if-there-is-a-record/m-p/169379#M1312526</guid>
      <dc:creator />
      <dc:date>2009-10-21T20:08:28Z</dc:date>
    </item>
  </channel>
</rss>

