<?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 Formatting Numbers in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Formatting-Numbers/m-p/300030#M1180861</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your format, you are using two times the 'dot' I suppose you want to use one time dot and one time the comma as thousand resp. decimal separator?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, a full format might look like:&lt;/P&gt;&lt;P&gt;=num(14960,'#.##0,0',',','.')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or without the decimal separator:&lt;/P&gt;&lt;P&gt;=num(14960,'#.##0',',','.')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if you want to get to step 3:&lt;/P&gt;&lt;P&gt;=num(14960/1000,'#.##0',',','.')&amp;amp;' TEUR'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or without rounding:&lt;/P&gt;&lt;P&gt;=num(floor(14960/1000),'#.##0',',','.')&amp;amp;' TEUR'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use all these expression e.g. in a text box, and you could also replace the 14960 constant with a field name.&lt;/P&gt;&lt;P&gt;=num(floor(FACTFIELD/1000),'#.##0',',','.')&amp;amp;' TEUR'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Feb 2012 18:48:37 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2012-02-20T18:48:37Z</dc:date>
    <item>
      <title>Formatting Numbers</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Numbers/m-p/300028#M1180859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm very embarassed to ask, but is it somehow possible to format numbers in this way:&lt;/P&gt;&lt;P&gt;Step1: 14960&lt;/P&gt;&lt;P&gt;Step2: 14.960&lt;/P&gt;&lt;P&gt;Step3: 14 TEUR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step1 to Step2 is easy. But i totally fail at Step3. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;donuteater&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2012 15:27:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Numbers/m-p/300028#M1180859</guid>
      <dc:creator />
      <dc:date>2012-02-20T15:27:51Z</dc:date>
    </item>
    <item>
      <title>Formatting Numbers</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Numbers/m-p/300029#M1180860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Obviously, i'd format it in Excel like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"#.##0."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this doesn't work, since it does seriously destroy the whole format of the number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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>Mon, 20 Feb 2012 15:39:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Numbers/m-p/300029#M1180860</guid>
      <dc:creator />
      <dc:date>2012-02-20T15:39:22Z</dc:date>
    </item>
    <item>
      <title>Formatting Numbers</title>
      <link>https://community.qlik.com/t5/QlikView/Formatting-Numbers/m-p/300030#M1180861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your format, you are using two times the 'dot' I suppose you want to use one time dot and one time the comma as thousand resp. decimal separator?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, a full format might look like:&lt;/P&gt;&lt;P&gt;=num(14960,'#.##0,0',',','.')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or without the decimal separator:&lt;/P&gt;&lt;P&gt;=num(14960,'#.##0',',','.')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if you want to get to step 3:&lt;/P&gt;&lt;P&gt;=num(14960/1000,'#.##0',',','.')&amp;amp;' TEUR'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or without rounding:&lt;/P&gt;&lt;P&gt;=num(floor(14960/1000),'#.##0',',','.')&amp;amp;' TEUR'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use all these expression e.g. in a text box, and you could also replace the 14960 constant with a field name.&lt;/P&gt;&lt;P&gt;=num(floor(FACTFIELD/1000),'#.##0',',','.')&amp;amp;' TEUR'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2012 18:48:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Formatting-Numbers/m-p/300030#M1180861</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-02-20T18:48:37Z</dc:date>
    </item>
  </channel>
</rss>

