<?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: Problem with &amp;quot;Where&amp;quot; clause in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659901#M677125</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hm, does not work. Does it matter that the field type is DATE? I seem to have a problem with this particular field. the same expression for jobnr works...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jun 2014 12:56:30 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-06-11T12:56:30Z</dc:date>
    <item>
      <title>Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659898#M677121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following code that gives me a problem with the "Where" clause:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT "job_nummer",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; jobnr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "datum_auftrag",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year ("datum_auftrag") as Jahr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ("datum_auftrag") as Monat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM EASY.job where "datum_auftrag" = date;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the "Where" clause I would like to exclude entries that do not have a date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone help me with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much in advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 12:46:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659898#M677121</guid>
      <dc:creator />
      <dc:date>2014-06-11T12:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659899#M677122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to load null only&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT "&lt;SPAN class="i9avzc958wve" style="border-top-color: transparent; border-right-color: transparent; border-left-color: transparent; font-style: inherit; font-family: inherit; text-decoration: underline; color: #009900 !important;"&gt;job&lt;/SPAN&gt;_nummer",&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; jobnr,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "datum_auftrag",&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year ("datum_auftrag") as Jahr,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ("datum_auftrag") as Monat&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM EASY.job where&amp;nbsp; "datum_auftrag" is&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; null&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Update&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;to exclude null&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT "&lt;SPAN class="i9avzc958wve" style="border-top-color: transparent; border-right-color: transparent; border-left-color: transparent; font-style: inherit; font-family: inherit; text-decoration: underline; color: #009900 !important;"&gt;job&lt;/SPAN&gt;_nummer",&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; jobnr,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "datum_auftrag",&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year ("datum_auftrag") as Jahr,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ("datum_auftrag") as Monat&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM EASY.job where&amp;nbsp; "datum_auftrag" &amp;lt;&amp;gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;null&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 12:48:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659899#M677122</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-06-11T12:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659900#M677124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From EASY.job where "datum_auftrag" = date and "datum_auftrag" &amp;lt;&amp;gt; NULL;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 12:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659900#M677124</guid>
      <dc:creator />
      <dc:date>2014-06-11T12:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659901#M677125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hm, does not work. Does it matter that the field type is DATE? I seem to have a problem with this particular field. the same expression for jobnr works...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 12:56:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659901#M677125</guid>
      <dc:creator />
      <dc:date>2014-06-11T12:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659902#M677127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How is Datum_auftrag formatted? How is Date formatted? Are they the exact same?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 12:59:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659902#M677127</guid>
      <dc:creator />
      <dc:date>2014-06-11T12:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659903#M677129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where "datum_auftrag" is not null&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eduardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 12:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659903#M677129</guid>
      <dc:creator>eduardo_sommer</dc:creator>
      <dc:date>2014-06-11T12:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659904#M677131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM EASY.job where "datum_auftrag" IS NOT NULL;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:00:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659904#M677131</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2014-06-11T13:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659905#M677132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where "datum_auftrag" is not null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659905#M677132</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-11T13:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659906#M677133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;seems to be a tricky one. the expression works but does not filter out entries that do not have a date...&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/cry.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:04:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659906#M677133</guid>
      <dc:creator />
      <dc:date>2014-06-11T13:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659907#M677134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dd.mm.yyyy&lt;/P&gt;&lt;P&gt;yes, all are the same&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:05:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659907#M677134</guid>
      <dc:creator />
      <dc:date>2014-06-11T13:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659908#M677135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From EASY.job where "datum_auftrag" IS NOT NULL AND "datum_auftrag" = Date;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:07:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659908#M677135</guid>
      <dc:creator />
      <dc:date>2014-06-11T13:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659909#M677136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What brand of SQL are you using. If it is Microsoft SQL server. it's Transact-SQL has a function called ISDATE, which you can use to check if your field contains a valid date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eduardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659909#M677136</guid>
      <dc:creator>eduardo_sommer</dc:creator>
      <dc:date>2014-06-11T13:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659910#M677137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It cannot be tricky...&amp;nbsp; Maybe there are NULLs &lt;STRONG&gt;and BLANKs&lt;/STRONG&gt; there (?).&amp;nbsp; Try this&lt;/P&gt;&lt;P&gt;where ltrim(rtrim("datum_auftrag")) &amp;lt;&amp;gt; '' and "datum_auftrag" is not null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:13:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659910#M677137</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-11T13:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659911#M677138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eduardo?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How does the ISDATE funktion work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:20:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659911#M677138</guid>
      <dc:creator />
      <dc:date>2014-06-11T13:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659912#M677139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where ISDATE(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;"datum_auftrag"&lt;/SPAN&gt;) = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ISDATE returns 1, the date is valid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eduardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:24:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659912#M677139</guid>
      <dc:creator>eduardo_sommer</dc:creator>
      <dc:date>2014-06-11T13:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659913#M677140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is an odbc database is guess it does not have this funktion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:48:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659913#M677140</guid>
      <dc:creator />
      <dc:date>2014-06-11T13:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659914#M677141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC is just the link between your application and the database. It is not "the database". So, depending on the underlying database, you will have different command sets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eduardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:51:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659914#M677141</guid>
      <dc:creator>eduardo_sommer</dc:creator>
      <dc:date>2014-06-11T13:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659915#M677142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, my apologies. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/blush.png" /&gt; it is a pervasive database. plaese excuse my mistake. this is quite new to me... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:01:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659915#M677142</guid>
      <dc:creator />
      <dc:date>2014-06-11T14:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659916#M677143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FROM EASY.job Where "datum_auftrag" is null;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;works. it gives me the empy fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM EASY.job Where "datum_auftrag" is not null;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;works too, but it does not filter out the empty fiels, they are still there...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:02:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659916#M677143</guid>
      <dc:creator />
      <dc:date>2014-06-11T14:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with "Where" clause</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659917#M677144</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 made a quick research on the IsDate function for Pervasive. It works a little different from T-SQL. Instead of returning 1 for true and 0 for false it just returns true or false.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, please try using &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ISDATE(&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;datum_auftrag&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;without the '= 1' I suggested before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eduardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:09:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-quot-Where-quot-clause/m-p/659917#M677144</guid>
      <dc:creator>eduardo_sommer</dc:creator>
      <dc:date>2014-06-11T14:09:13Z</dc:date>
    </item>
  </channel>
</rss>

