<?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(isnull) statement in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/if-isnull-statement/m-p/1154426#M20809</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i'm getting 'Grabage after expression: 'not'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jul 2016 08:08:44 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-07-14T08:08:44Z</dc:date>
    <item>
      <title>if(isnull) statement</title>
      <link>https://community.qlik.com/t5/App-Development/if-isnull-statement/m-p/1154424#M20807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to use this formula but i'm getting 'Error in Expression: If takes 2-3 parameters'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help me with this to work properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(isnull([SHIP_DT]) = false and isnull([P_RETURN_DT])=false) then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(sum(([SALE_RPRICE])*([ORDER_QTY]))*(-1));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;else if(isnull([SHIP_DT])=false and isnull([P_RETURN_DT])=true) then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum(([SALE_RPRICE])*([ORDER_QTY]));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;else&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'0';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;end if&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 06:15:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/if-isnull-statement/m-p/1154424#M20807</guid>
      <dc:creator />
      <dc:date>2016-07-14T06:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: if(isnull) statement</title>
      <link>https://community.qlik.com/t5/App-Development/if-isnull-statement/m-p/1154425#M20808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if not isnull([SHIP_DT])&amp;nbsp; and not isnull([P_RETURN_DT]) then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(sum(([SALE_RPRICE])*([ORDER_QTY]))*(-1));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;else if not isnull([SHIP_DT]) and isnull([P_RETURN_DT]) then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum(([SALE_RPRICE])*([ORDER_QTY]));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;else&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'0';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;end if&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 07:07:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/if-isnull-statement/m-p/1154425#M20808</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2016-07-14T07:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: if(isnull) statement</title>
      <link>https://community.qlik.com/t5/App-Development/if-isnull-statement/m-p/1154426#M20809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i'm getting 'Grabage after expression: 'not'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 08:08:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/if-isnull-statement/m-p/1154426#M20809</guid>
      <dc:creator />
      <dc:date>2016-07-14T08:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: if(isnull) statement</title>
      <link>https://community.qlik.com/t5/App-Development/if-isnull-statement/m-p/1154427#M20810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;If(Len(Trim([SHIP_DT])) &amp;gt; 0 and Len(Trim([P_RETURN_DT])) &amp;gt; 0, &lt;/STRONG&gt;&lt;STRONG style="font-family: inherit; line-height: 1.5em; font-style: inherit;"&gt;Sum(([SALE_RPRICE])*([ORDER_QTY])) * (-1),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;If(Len(Trim([SHIP_DT])) &amp;gt; 0 and Len(Trim([P_RETURN_DT])) = 0, S&lt;/STRONG&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;um(([SALE_RPRICE])*([ORDER_QTY])), 0))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2016 11:09:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/if-isnull-statement/m-p/1154427#M20810</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-14T11:09:27Z</dc:date>
    </item>
  </channel>
</rss>

