<?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: How to represent Number format Money in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359820#M574382</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;might be a bit late &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;SPAN class="emoticon-inline emoticon_wink" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;SPAN class="emoticon-inline emoticon_wink" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;but maybe also helpful:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14042118128098289" jivemacro_uid="_14042118128098289"&gt;
&lt;P&gt;SET vSize = Div(Log10($1),3);&lt;/P&gt;
&lt;P&gt;SET vFormatNumber = Dual(Num($1/Pow(10,3*$(vSize($1))),'#,##0')&amp;amp;' '&amp;amp;Pick($(vSize($1)),'K','Mil','Bil','Tril'),$1);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vFormatNumber(parameter)) as paramFormat;&lt;/P&gt;
&lt;P&gt;LOAD pow(10,Rand()*14) as parameter&lt;/P&gt;
&lt;P&gt;AutoGenerate 30;&lt;/P&gt;

&lt;/PRE&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;IMG alt="QlikCommunity_Thread_38556_Pic4.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/61514_QlikCommunity_Thread_38556_Pic4.JPG.jpg" style="max-width: 620px;" /&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;IMG alt="QlikCommunity_Thread_38556_Pic5.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/61515_QlikCommunity_Thread_38556_Pic5.JPG.jpg" /&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jun 2014 20:11:53 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2014-06-30T20:11:53Z</dc:date>
    <item>
      <title>How to represent Number format Money</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359816#M574378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I searched through the forum but could not find a right answer to represent number format money in thousands (K) Million (M) and Billions (B) Anyone had success with that? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rodrigues&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 01:48:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359816#M574378</guid>
      <dc:creator />
      <dc:date>2012-07-20T01:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to represent Number format Money</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359817#M574379</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 you are not using straight table, use format symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For straight table you need to change the expression to include formating. Num(&amp;lt;expression&amp;gt;/1000,'$ #,##0.00 K')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 04:53:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359817#M574379</guid>
      <dc:creator />
      <dc:date>2012-07-20T04:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to represent Number format Money</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359818#M574380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. That certainly helps. But I watnt hsi Moey format in a pie chart, so I want to know how to use format symbols for Million, Billion representation for Money number type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rodrigues&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 18:53:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359818#M574380</guid>
      <dc:creator />
      <dc:date>2012-07-20T18:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to represent Number format Money</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359819#M574381</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;Num(&amp;lt;expression&amp;gt;/1000000,'$ #,##0.00 (M)')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(&amp;lt;expression&amp;gt;/1000000000,'$ #,##0.00 (B)')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can't use negative values in pie chart..so need for negative symbol representation for money&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 19:24:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359819#M574381</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-07-20T19:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to represent Number format Money</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359820#M574382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;might be a bit late &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;SPAN class="emoticon-inline emoticon_wink" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;SPAN class="emoticon-inline emoticon_wink" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;but maybe also helpful:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14042118128098289" jivemacro_uid="_14042118128098289"&gt;
&lt;P&gt;SET vSize = Div(Log10($1),3);&lt;/P&gt;
&lt;P&gt;SET vFormatNumber = Dual(Num($1/Pow(10,3*$(vSize($1))),'#,##0')&amp;amp;' '&amp;amp;Pick($(vSize($1)),'K','Mil','Bil','Tril'),$1);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vFormatNumber(parameter)) as paramFormat;&lt;/P&gt;
&lt;P&gt;LOAD pow(10,Rand()*14) as parameter&lt;/P&gt;
&lt;P&gt;AutoGenerate 30;&lt;/P&gt;

&lt;/PRE&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;IMG alt="QlikCommunity_Thread_38556_Pic4.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/61514_QlikCommunity_Thread_38556_Pic4.JPG.jpg" style="max-width: 620px;" /&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;IMG alt="QlikCommunity_Thread_38556_Pic5.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/61515_QlikCommunity_Thread_38556_Pic5.JPG.jpg" /&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2014 20:11:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359820#M574382</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-06-30T20:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to represent Number format Money</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359821#M574383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&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;You can change the auto number formatting symbol from "G" to "B" in javascript&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Please check this &lt;A _jive_internal="true" data-containerid="2156" data-containertype="14" data-objectid="17461" data-objecttype="102" href="https://community.qlik.com/docs/DOC-17461" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Steps to Change : Qlik Sense - Billions number format 'G' to 'B'&lt;/A&gt;&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;Thanks,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Lakshmikandh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 19:44:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359821#M574383</guid>
      <dc:creator>lakshmikandh</dc:creator>
      <dc:date>2016-09-27T19:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to represent Number format Money</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359822#M574384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone got solution for this, I am facing similar issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Money format is working fine in bar chart but not in pie chart. i am using QV11SR9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2016 11:37:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359822#M574384</guid>
      <dc:creator />
      <dc:date>2016-11-07T11:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to represent Number format Money</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359823#M574385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please don't add new questions to other's threads.&lt;/P&gt;&lt;P&gt;Instead create a new thread for your question.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2016 21:02:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-represent-Number-format-Money/m-p/359823#M574385</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2016-11-07T21:02:21Z</dc:date>
    </item>
  </channel>
</rss>

