<?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: Selection based Percentage format in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402503#M32671</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Youssef,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I kept format as AUTO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rathnam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Dec 2017 10:40:13 GMT</pubDate>
    <dc:creator>rathnam_qv</dc:creator>
    <dc:date>2017-12-14T10:40:13Z</dc:date>
    <item>
      <title>Selection based Percentage format</title>
      <link>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402499#M32667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am show GP and GP% based on selection.&lt;/P&gt;&lt;P&gt;Issue is while selection GP%...value is displaying like 6.32 but i want to display it as 6.32%.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My expression is If(String='GP%', Num( (Value1-Value2) /Value1,'0.00%')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need your suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rathnam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 09:11:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402499#M32667</guid>
      <dc:creator>rathnam_qv</dc:creator>
      <dc:date>2017-12-14T09:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selection based Percentage format</title>
      <link>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402500#M32668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Try this&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;If(String='GP%', (Value1-Value2) /Value1)&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;and in Formatting-&amp;gt;simple-&amp;gt;keep in percentage&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 09:27:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402500#M32668</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-14T09:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selection based Percentage format</title>
      <link>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402501#M32669</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;you are maybe ovveriding the format on the Number section.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 09:36:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402501#M32669</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2017-12-14T09:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selection based Percentage format</title>
      <link>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402502#M32670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aparna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am calling two conditions in the same expression,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(String='GP$',Num(condtion1,'#,##0'),&lt;/P&gt;&lt;P&gt;If(String='GP%', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Num( (Value1-Value2) /Value1,'0.00%'))&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;BR /&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;Kept Format is "AUTO"&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;BR /&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;GP$ format is working fine. only issue with GP% format.&lt;BR /&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;BR /&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;Thanks,&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;Rathnam.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 10:39:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402502#M32670</guid>
      <dc:creator>rathnam_qv</dc:creator>
      <dc:date>2017-12-14T10:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Selection based Percentage format</title>
      <link>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402503#M32671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Youssef,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I kept format as AUTO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rathnam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 10:40:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402503#M32671</guid>
      <dc:creator>rathnam_qv</dc:creator>
      <dc:date>2017-12-14T10:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Selection based Percentage format</title>
      <link>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402504#M32672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with number formatting-&amp;gt;measure expression&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 10:42:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402504#M32672</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-14T10:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Selection based Percentage format</title>
      <link>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402505#M32673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Number format will apply to both the selections...i want to apply it only for GP% selection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2017 03:23:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Selection-based-Percentage-format/m-p/1402505#M32673</guid>
      <dc:creator>rathnam_qv</dc:creator>
      <dc:date>2017-12-15T03:23:02Z</dc:date>
    </item>
  </channel>
</rss>

