<?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: Currency Comaprision in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299400#M825160</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;if(Money(&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Revenue)&amp;lt;1......&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you be able to share a sample with the expected output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Jul 2017 16:38:38 GMT</pubDate>
    <dc:creator>el_aprendiz111</dc:creator>
    <dc:date>2017-07-13T16:38:38Z</dc:date>
    <item>
      <title>Currency Comaprision</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299397#M825156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have revenue in $. I need to divide this revenue in 3 categories that is tail(&amp;lt;$1 Mn),middle(1-5 Mn) and large(&amp;gt;5 Mn). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My script is as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text(If(Revenue&amp;lt;1,'Tail',If(Revenue&amp;gt;5,'Large','Middle'))) as Account_type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am comparing revenue with 1 that is a number not in currency format. This is giving me inaccurate results.&lt;/P&gt;&lt;P&gt;How can I compare revenue in currency format.&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/Currency-Comaprision/m-p/1299397#M825156</guid>
      <dc:creator>siddharthsoam</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Currency Comaprision</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299398#M825157</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;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;If(Revenue &amp;lt; 1,'Tail',&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;If(Revenue &amp;lt; 5, '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Middle&lt;/SPAN&gt;', 'Large')) as Account_type&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 16:34:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299398#M825157</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-13T16:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Currency Comaprision</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299399#M825158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Revenue &amp;lt;= 1,'Tail,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Revenue &amp;gt; 1 And Revenue &amp;lt;= 5, 'Middle',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Large'&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )) as Account_type&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;HTH,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;John&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 16:38:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299399#M825158</guid>
      <dc:creator>johnca</dc:creator>
      <dc:date>2017-07-13T16:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Currency Comaprision</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299400#M825160</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;if(Money(&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Revenue)&amp;lt;1......&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you be able to share a sample with the expected output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 16:38:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299400#M825160</guid>
      <dc:creator>el_aprendiz111</dc:creator>
      <dc:date>2017-07-13T16:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Currency Comaprision</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299401#M825161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're just too fast for me Sunny &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 16:39:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-Comaprision/m-p/1299401#M825161</guid>
      <dc:creator>johnca</dc:creator>
      <dc:date>2017-07-13T16:39:19Z</dc:date>
    </item>
  </channel>
</rss>

