<?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 codniton with multiple fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/where-codniton-with-multiple-fields/m-p/1764688#M718379</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18743"&gt;@soniasweety&lt;/a&gt;&amp;nbsp;, please check if this works :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where&lt;BR /&gt;not isnull(Avgscore) and Avgscore &amp;lt;&amp;gt;0 and&lt;BR /&gt;not isnull(Isdate) and Isdate&amp;lt;&amp;gt;0 and&lt;BR /&gt;not isnull(attendies) and attendies&amp;lt;&amp;gt;0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Nov 2020 12:09:53 GMT</pubDate>
    <dc:creator>QFabian</dc:creator>
    <dc:date>2020-11-26T12:09:53Z</dc:date>
    <item>
      <title>where codniton with multiple fields</title>
      <link>https://community.qlik.com/t5/QlikView/where-codniton-with-multiple-fields/m-p/1764687#M718378</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I want to load data where multiples is not null or non Zero for 3 fields&lt;/P&gt;&lt;P&gt;I have tried this but not working any other alternate?&lt;/P&gt;&lt;P&gt;&lt;FONT size="1" color="#0000ff"&gt;Where&lt;/FONT&gt; &lt;FONT size="1" color="#0000ff"&gt;isnull&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#800000"&gt;Avgscore&lt;/FONT&gt;&lt;FONT size="1"&gt;)=0 &lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;and&lt;/FONT&gt; &lt;FONT size="1" color="#0000ff"&gt;isnull&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#800000"&gt;Isdate&lt;/FONT&gt;&lt;FONT size="1"&gt;)=0 &lt;/FONT&gt;&lt;FONT size="1" color="#0000ff"&gt;and&lt;/FONT&gt; &lt;FONT size="1" color="#0000ff"&gt;isnull&lt;/FONT&gt;&lt;FONT size="1"&gt;(&lt;/FONT&gt;&lt;FONT size="1" color="#800000"&gt;attendies&lt;/FONT&gt;&lt;FONT size="1"&gt;)=0; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:33:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-codniton-with-multiple-fields/m-p/1764687#M718378</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2024-11-15T23:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: where codniton with multiple fields</title>
      <link>https://community.qlik.com/t5/QlikView/where-codniton-with-multiple-fields/m-p/1764688#M718379</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18743"&gt;@soniasweety&lt;/a&gt;&amp;nbsp;, please check if this works :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where&lt;BR /&gt;not isnull(Avgscore) and Avgscore &amp;lt;&amp;gt;0 and&lt;BR /&gt;not isnull(Isdate) and Isdate&amp;lt;&amp;gt;0 and&lt;BR /&gt;not isnull(attendies) and attendies&amp;lt;&amp;gt;0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 12:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-codniton-with-multiple-fields/m-p/1764688#M718379</guid>
      <dc:creator>QFabian</dc:creator>
      <dc:date>2020-11-26T12:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: where codniton with multiple fields</title>
      <link>https://community.qlik.com/t5/QlikView/where-codniton-with-multiple-fields/m-p/1764706#M718380</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18743"&gt;@soniasweety&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try like below&lt;/P&gt;&lt;P&gt;where Len(Trim(Avgscore)) &amp;gt; 0 and Len(Trim(Isdate))&amp;gt;0 and Len(Trim(attendies))&amp;gt;0 and Avgscore &amp;lt;&amp;gt; 0 and Isdate &amp;lt;&amp;gt; 0 and attendies&amp;lt;&amp;gt; 0;&lt;/P&gt;&lt;P&gt;--&amp;nbsp;Len(Trim(Avgscore)) &amp;gt; 0 and Len(Trim(Isdate))&amp;gt;0 and Len(Trim(attendies))&amp;gt;0 &amp;lt;-- it will check for null values&amp;nbsp;&lt;/P&gt;&lt;P&gt;--&amp;nbsp;Avgscore &amp;lt;&amp;gt; 0 and Isdate &amp;lt;&amp;gt; 0 and attendies&amp;lt;&amp;gt; 0 &amp;lt;-- it will check for zero values&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 13:07:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-codniton-with-multiple-fields/m-p/1764706#M718380</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-26T13:07:42Z</dc:date>
    </item>
  </channel>
</rss>

