<?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: IF condition for &amp;lt;&amp;gt;Null in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/IF-condition-for-lt-gt-Null/m-p/647125#M1062776</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( &lt;STRONG&gt;Len(Trim(SALES_GRP))=0&lt;/STRONG&gt; AND &lt;STRONG&gt;Len(Trim(SALES_OFF))=0&lt;/STRONG&gt; AND Division&amp;lt;&amp;gt;'XYZ',Sales_Value )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Sep 2014 09:45:36 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2014-09-19T09:45:36Z</dc:date>
    <item>
      <title>IF condition for &lt;&gt;Null</title>
      <link>https://community.qlik.com/t5/QlikView/IF-condition-for-lt-gt-Null/m-p/647124#M1062775</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 have Sales Data where I want to have Sales_Value under the condition&lt;/P&gt;&lt;P&gt;WHERE SALES_OFF&amp;lt;&amp;gt;Null&lt;/P&gt;&lt;P&gt;SALES_GRP&amp;lt;&amp;gt;Null&lt;/P&gt;&lt;P&gt;&amp;amp; Division&amp;lt;&amp;gt;XYZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I get the Value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried by this at Scripting Level as well as in Front END but its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(SALES_GRP&amp;lt;&amp;gt;' ' AND SALES_OFF&amp;lt;&amp;gt;' ' AND Division&amp;lt;&amp;gt;'XYZ',Sales_Value )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone plz help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Renuka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2014 09:43:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-condition-for-lt-gt-Null/m-p/647124#M1062775</guid>
      <dc:creator>renuka_sasikumar</dc:creator>
      <dc:date>2014-09-19T09:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: IF condition for &lt;&gt;Null</title>
      <link>https://community.qlik.com/t5/QlikView/IF-condition-for-lt-gt-Null/m-p/647125#M1062776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( &lt;STRONG&gt;Len(Trim(SALES_GRP))=0&lt;/STRONG&gt; AND &lt;STRONG&gt;Len(Trim(SALES_OFF))=0&lt;/STRONG&gt; AND Division&amp;lt;&amp;gt;'XYZ',Sales_Value )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2014 09:45:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-condition-for-lt-gt-Null/m-p/647125#M1062776</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-09-19T09:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: IF condition for &lt;&gt;Null</title>
      <link>https://community.qlik.com/t5/QlikView/IF-condition-for-lt-gt-Null/m-p/647126#M1062777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(NOT ISNULL(SALES_GRP) AND NOT ISNULL(SALES_OFF) AND Division &amp;lt;&amp;gt; 'XYZ', Sales_Value)&amp;nbsp; AS Sales_Value;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2014 09:46:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-condition-for-lt-gt-Null/m-p/647126#M1062777</guid>
      <dc:creator>jvitantonio</dc:creator>
      <dc:date>2014-09-19T09:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: IF condition for &lt;&gt;Null</title>
      <link>https://community.qlik.com/t5/QlikView/IF-condition-for-lt-gt-Null/m-p/647127#M1062778</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;You can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if( &lt;/SPAN&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Len(Trim(SALES_GRP))=0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;OR &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(Not Isnull&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(SALES_GRP))&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hope this helps you.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;jagan.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2014 09:49:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-condition-for-lt-gt-Null/m-p/647127#M1062778</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-19T09:49:17Z</dc:date>
    </item>
  </channel>
</rss>

