<?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: oracle nvl() in qlik in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17546#M779753</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Particular reason..you can use len(trim()) for that also.. Alt generally works with numeric values..seeing that asa n amount field, I thought of using alt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Apr 2018 10:01:06 GMT</pubDate>
    <dc:creator>sasiparupudi1</dc:creator>
    <dc:date>2018-04-11T10:01:06Z</dc:date>
    <item>
      <title>oracle nvl() in qlik</title>
      <link>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17542#M779749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to replicate the Oracle Query logic&amp;nbsp; in Qlik. We cant directly run the query.&lt;/P&gt;&lt;P&gt;We are extracting each table from data base, doing joins as per query and performing the logics in Qlik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one please help me to replicate the&amp;nbsp; below highlighted&amp;nbsp; red color nvl() logic in Qlik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;productname,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-indent: 0px; text-align: left; color: #575757; font-style: normal; font-size: 13.33px; font-family: arial,helvetica,sans-serif; font-weight: 400;"&gt;paidamount,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-indent: 0px; text-align: left; color: #575757; font-style: normal; font-size: 13.33px; font-family: arial,helvetica,sans-serif; font-weight: 400;"&gt;productno&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;from Product p&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join sales&amp;nbsp; s on p.id = s.id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where p.date = s.date&lt;/P&gt;&lt;P&gt;and (&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; nvl(p.productname, 0)&amp;nbsp; != 0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;or nvl(p.paidamount, 0)&amp;nbsp;&amp;nbsp;&amp;nbsp; !=0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;or nvl(p.productno, 0)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !=0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17542#M779749</guid>
      <dc:creator>mahitham</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: oracle nvl() in qlik</title>
      <link>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17543#M779750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ORACLE&lt;/P&gt;&lt;P&gt;and (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nvl(p.productname, 0)&amp;nbsp;&amp;nbsp; != 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or nvl(p.paidamount, 0) !=0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or nvl(p.productno, 0)&amp;nbsp; !=0&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QLIKVIEW&lt;/P&gt;&lt;P&gt;&lt;EM&gt;and(&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsNull(productname) = 0&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or IsNull(paidamount) = 0&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or IsNull(productno) = 0&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2018 09:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17543#M779750</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2018-04-11T09:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: oracle nvl() in qlik</title>
      <link>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17544#M779751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;and (&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit; color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Len(Trim(p.productname))&amp;gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;SPAN style="color: #ff0000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;or Alt(p.paidamount, 0) &amp;lt;&amp;gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit; color: #ff0000;"&gt;&lt;STRONG&gt;or &lt;SPAN style="font-family: inherit; font-size: 13px; font-style: inherit; color: #ff0000;"&gt;&lt;STRONG&gt;Len(Trim(&lt;/STRONG&gt;&lt;/SPAN&gt;p.productno))&amp;gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2018 09:44:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17544#M779751</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2018-04-11T09:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: oracle nvl() in qlik</title>
      <link>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17545#M779752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sasidhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I didn't understand why Alt taken for p.paidamount . could you please explain once.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2018 09:52:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17545#M779752</guid>
      <dc:creator>mahitham</dc:creator>
      <dc:date>2018-04-11T09:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: oracle nvl() in qlik</title>
      <link>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17546#M779753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Particular reason..you can use len(trim()) for that also.. Alt generally works with numeric values..seeing that asa n amount field, I thought of using alt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2018 10:01:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/oracle-nvl-in-qlik/m-p/17546#M779753</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2018-04-11T10:01:06Z</dc:date>
    </item>
  </channel>
</rss>

