<?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 text object complex logic in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/text-object-complex-logic/m-p/668377#M1075841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need the followig representaion in Text object dynamically if user selects the number the result should be i 3.1bn, 4.2m .......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;*the number 3,055,123,456 should be displayed as ("3.1Bn")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;*the number 4,160,023 should be displayed as ("4.2M")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;*The number 45,801 should be displayed as ("46k")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;do respond me&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jul 2014 04:40:08 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-07-29T04:40:08Z</dc:date>
    <item>
      <title>text object complex logic</title>
      <link>https://community.qlik.com/t5/QlikView/text-object-complex-logic/m-p/668377#M1075841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need the followig representaion in Text object dynamically if user selects the number the result should be i 3.1bn, 4.2m .......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;*the number 3,055,123,456 should be displayed as ("3.1Bn")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;*the number 4,160,023 should be displayed as ("4.2M")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;*The number 45,801 should be displayed as ("46k")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;do respond me&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 04:40:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/text-object-complex-logic/m-p/668377#M1075841</guid>
      <dc:creator />
      <dc:date>2014-07-29T04:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: text object complex logic</title>
      <link>https://community.qlik.com/t5/QlikView/text-object-complex-logic/m-p/668378#M1075842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=If(number/1000000000&amp;gt;1, Round(number/1000000000,0.1)&amp;amp;'Bn',&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(number/1000000&amp;gt;1, Round(number/1000000,0.1)&amp;amp;'M',&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(number/1000&amp;gt;1, Round(number/1000,0.1)&amp;amp;'K', number)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 05:00:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/text-object-complex-logic/m-p/668378#M1075842</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-07-29T05:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: text object complex logic</title>
      <link>https://community.qlik.com/t5/QlikView/text-object-complex-logic/m-p/668379#M1075843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use nested if statement as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let the selecting field be Field1 and there is another Field2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if(GetFieldSelections(Field1)='',then )&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 05:03:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/text-object-complex-logic/m-p/668379#M1075843</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2014-07-29T05:03:54Z</dc:date>
    </item>
  </channel>
</rss>

