<?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: Format Number with apostrophe in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874831#M532341</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;What is your&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;in script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Apr 2015 09:28:41 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2015-04-22T09:28:41Z</dc:date>
    <item>
      <title>Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874818#M532328</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;I would like to format a number in an expression. The format should look like this: 999'999.00&lt;/P&gt;&lt;P&gt;I've tried several things, but I cant get the result I whish.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i use; =num(amount,'#''##0.00','.',chr(39))&amp;nbsp; the result looks like this: 99'9'999.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when replacing the 2 apostrophe with a comma =num(amount,'#,##0.00','.',chr(39))&amp;nbsp; the result looks like this: 999999,# #0.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone tell me how to format this number correctly?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ilonka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 12:23:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874818#M532328</guid>
      <dc:creator />
      <dc:date>2015-04-21T12:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874819#M532329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Properties, Tab Number choose Fixed to 2 decimals and change Decimal Separator with . and Thousand Separator with '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or perhaps with this:&lt;/P&gt;&lt;P&gt;Replace(Replace(num(Number,'#.##0,00'),'.',chr(39)),',','.')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 15:20:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874819#M532329</guid>
      <dc:creator>fvelascog72</dc:creator>
      <dc:date>2015-04-21T15:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874820#M532330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the suggestion.&lt;/P&gt;&lt;P&gt;In the Tab Number I cant see any dimension. (my number is a Dimension).&lt;/P&gt;&lt;P&gt;With Replace(Replace(num(Number,'#.##0,00'),'.',chr(39)),',','.') I get 99999999'900.00 (original number is 9'999'999.99)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 15:57:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874820#M532330</guid>
      <dc:creator />
      <dc:date>2015-04-21T15:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874821#M532331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ilonka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try with this little modified Ferico's solution:&lt;/P&gt;&lt;P&gt;replace(num(sum([Material Code]),'###,##0.00'),',',chr(39))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 16:07:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874821#M532331</guid>
      <dc:creator>anlonghi2</dc:creator>
      <dc:date>2015-04-21T16:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874822#M532332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;= num(($vTestNum), '#''##0', '.', chr(39))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 16:18:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874822#M532332</guid>
      <dc:creator>NickHoff</dc:creator>
      <dc:date>2015-04-21T16:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874823#M532333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: blue;"&gt;Replace&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: blue;"&gt;num&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;(9999999,'#,##0.00'),',',&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: blue;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;(39)) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 16:35:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874823#M532333</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-04-21T16:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874824#M532334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There isn't a need to use replace, my solution works just replace the variable with your field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 16:53:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874824#M532334</guid>
      <dc:creator>NickHoff</dc:creator>
      <dc:date>2015-04-21T16:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874825#M532335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;still get as result 999'9'999&lt;/P&gt;&lt;P&gt;Is it possible that some system region settings are messing up the format?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 06:31:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874825#M532335</guid>
      <dc:creator />
      <dc:date>2015-04-22T06:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874826#M532336</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;Post your sample apps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 06:40:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874826#M532336</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-04-22T06:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874827#M532337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Replace 999999 with your dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=TextBetween(num(999999,'#,##0.00'),'',',')&amp;amp;Chr(39)&amp;amp;mid(num(999999,'#,##0.00'),FindOneOf(num(999999,'#,##0.00'),',')+1,100)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="84287" alt="22-Apr-15 7-50-12 AM.jpg" class="jive-image image-1" src="/legacyfs/online/84287_22-Apr-15 7-50-12 AM.jpg" style="height: 209px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;You can replace the 100&amp;nbsp; with any number or len(num(999999,'#,##0.00'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 06:51:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874827#M532337</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2015-04-22T06:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874828#M532338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Nick Hoff&lt;/P&gt;&lt;P&gt;=Num(999999999.99, '#''##0.00', '.', chr(39))&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt; 999'999'999.99&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you show use the exact expression you are using that is giving the wrong result. I don't think its system settings as the 2nd and 3rd parameters are overriding the system settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that the apostrophes in the format string is a pair of single apostrophes, not a double apostrophe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 06:56:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874828#M532338</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-04-22T06:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874829#M532339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the suggestions. Unfortunately none of them gives the correct result. (I used 2 single apostrophes, not double). The picture below shows the different results I've got.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="10.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/84291_10.JPG" style="height: 175px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is interesting, if I format a number in the 'number' tab with 'money' I get the same result as with =Num(999999999.99, '#''##0.00', '.', chr(39)). Only when I remove one of the 2 single apostrophes in the format, I get the correct result. (which made me believe that some system settings may mess up the result). I'll go for the comma as thousands-sep. for the moment.&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 08:29:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874829#M532339</guid>
      <dc:creator />
      <dc:date>2015-04-22T08:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874830#M532340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you attached your app or sample of your data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 09:03:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874830#M532340</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2015-04-22T09:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874831#M532341</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;What is your&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;in script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 09:28:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874831#M532341</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-04-22T09:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874832#M532342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET ThousandSep="'";&amp;nbsp;&amp;nbsp; (double quote, single quote, double quote)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 11:15:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874832#M532342</guid>
      <dc:creator />
      <dc:date>2015-04-22T11:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874833#M532343</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;Modify as i suggested in my earlier post then reload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then use&lt;/P&gt;&lt;P&gt;=replace(num(999999,'###,##0.00'),',',chr(39))&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;text object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 11:56:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874833#M532343</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-04-22T11:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Format Number with apostrophe</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874834#M532344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wow! It's working now!&lt;/P&gt;&lt;P&gt;Many thanks and kind regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 12:07:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Number-with-apostrophe/m-p/874834#M532344</guid>
      <dc:creator />
      <dc:date>2015-04-22T12:07:47Z</dc:date>
    </item>
  </channel>
</rss>

