<?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 positive, negative and greater than values in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/positive-negative-and-greater-than-values/m-p/1669368#M50550</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have Lot of fields in qliksense table,&amp;nbsp; using two fields in qliksense table those are outstanding amount and original amount,&amp;nbsp; some values are common&amp;nbsp;in these two fields, my client given some conditions for these two fields&lt;/P&gt;&lt;P&gt;&amp;nbsp;1. Original Amount&amp;nbsp; = Outstanding&amp;nbsp; Amount (Positive Amount)&lt;BR /&gt;2. If Outstanding&amp;nbsp; Amount is Less than Original Amount (Positive amount)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3. If Outstanding&amp;nbsp; Amount&amp;nbsp; is greater than or Equal To Original Amount (Negative amount)&lt;/P&gt;&lt;P&gt;all these conditions should come in qliksense table order wise, how can i do this?&lt;/P&gt;&lt;P&gt;its urgent&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jan 2020 10:08:20 GMT</pubDate>
    <dc:creator>Naresh1</dc:creator>
    <dc:date>2020-01-27T10:08:20Z</dc:date>
    <item>
      <title>positive, negative and greater than values</title>
      <link>https://community.qlik.com/t5/App-Development/positive-negative-and-greater-than-values/m-p/1669368#M50550</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have Lot of fields in qliksense table,&amp;nbsp; using two fields in qliksense table those are outstanding amount and original amount,&amp;nbsp; some values are common&amp;nbsp;in these two fields, my client given some conditions for these two fields&lt;/P&gt;&lt;P&gt;&amp;nbsp;1. Original Amount&amp;nbsp; = Outstanding&amp;nbsp; Amount (Positive Amount)&lt;BR /&gt;2. If Outstanding&amp;nbsp; Amount is Less than Original Amount (Positive amount)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3. If Outstanding&amp;nbsp; Amount&amp;nbsp; is greater than or Equal To Original Amount (Negative amount)&lt;/P&gt;&lt;P&gt;all these conditions should come in qliksense table order wise, how can i do this?&lt;/P&gt;&lt;P&gt;its urgent&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 10:08:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/positive-negative-and-greater-than-values/m-p/1669368#M50550</guid>
      <dc:creator>Naresh1</dc:creator>
      <dc:date>2020-01-27T10:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: positive, negative and greater than values</title>
      <link>https://community.qlik.com/t5/App-Development/positive-negative-and-greater-than-values/m-p/1669476#M50555</link>
      <description>&lt;P&gt;Set in the sort section of the Table the sort function to "Expression" and paste the following sort function:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if([Original Amount] = [Outstanding Amount],
	'1',
	If([Original Amount] &amp;gt; [Outstanding Amount],
		'2','3'
))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can do this in the script as well and use the function Dual instead.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 11:23:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/positive-negative-and-greater-than-values/m-p/1669476#M50555</guid>
      <dc:creator>TimvB</dc:creator>
      <dc:date>2020-01-27T11:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: positive, negative and greater than values</title>
      <link>https://community.qlik.com/t5/App-Development/positive-negative-and-greater-than-values/m-p/1669842#M50590</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;See the below sample data&amp;nbsp;&lt;/P&gt;&lt;P&gt;And also I'm given conditions,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to do all the conditions in Qliksense table,&amp;nbsp;&lt;/P&gt;&lt;P&gt;See 4 conditions,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want all 4 conditions values should come order by,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for responding&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 03:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/positive-negative-and-greater-than-values/m-p/1669842#M50590</guid>
      <dc:creator>Naresh1</dc:creator>
      <dc:date>2020-01-28T03:58:46Z</dc:date>
    </item>
  </channel>
</rss>

