<?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: Number Format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094029#M363525</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post an example document with this phenomenon, or we will have to guess what&lt;SPAN style="font-size: 13.3333px;"&gt; exactly&lt;/SPAN&gt; you are doing and that may take a while. Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Feb 2016 07:52:16 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2016-02-11T07:52:16Z</dc:date>
    <item>
      <title>Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094023#M363519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've the following number: &lt;STRONG&gt;10,01234&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;And I want to represent them into this format: &lt;STRONG&gt;10.012,34&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already try all the formats in number tab but nothing returns what I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What comes closest to what I want is :##.##,###&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone have any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 21:10:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094023#M363519</guid>
      <dc:creator />
      <dc:date>2016-02-10T21:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094024#M363520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;=num(YourField * 1000.0, '#.##0,00', ',', '.')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 21:16:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094024#M363520</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-02-10T21:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094025#M363521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Peter, but it doesn't returns the format that I want &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 21:21:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094025#M363521</guid>
      <dc:creator />
      <dc:date>2016-02-10T21:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094026#M363522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where is your "number" stored? Is it a text string?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It does work for me though. This script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;RawData:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD 10.01234 AS Number AUTOGENERATE 1; // Raw Binary number, default format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;NOCONCATENATE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD *, &lt;SPAN style="font-size: 13.3333px;"&gt;Num(NumberFormat1 * 1000.0, '#.##0,00', ',', '.') AS NumberFormat2;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD *, Num(Number, '#0,00000', ',') AS NumberFormat1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;RESIDENT RawData;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;DROP Table RawData;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;produces this in a table box (no number tweaking)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="114248" alt="Format Numbers thread 205115.jpg" class="jive-image image-1" height="34" src="/legacyfs/online/114248_Format Numbers thread 205115.jpg" style="height: 34.5036px; width: 327px;" width="327" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 21:54:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094026#M363522</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-02-10T21:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094027#M363523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I multiplicate by 1000 I get the number correct in my chart, however the value of my pop up it isn't correct... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 01:13:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094027#M363523</guid>
      <dc:creator />
      <dc:date>2016-02-11T01:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094028#M363524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is a bar chart, its a result of a calculation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 01:17:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094028#M363524</guid>
      <dc:creator />
      <dc:date>2016-02-11T01:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094029#M363525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post an example document with this phenomenon, or we will have to guess what&lt;SPAN style="font-size: 13.3333px;"&gt; exactly&lt;/SPAN&gt; you are doing and that may take a while. Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 07:52:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094029#M363525</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-02-11T07:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094030#M363526</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Num(Replace(FieldName, ',', '')/100, '#.##0,00', ',', '.')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 08:15:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094030#M363526</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-02-11T08:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094031#M363527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, cause chart display sum, you should use:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114293_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;so your result will be like this:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/114294_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 08:21:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/1094031#M363527</guid>
      <dc:creator>t_chetirbok</dc:creator>
      <dc:date>2016-02-11T08:21:22Z</dc:date>
    </item>
  </channel>
</rss>

