<?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/948698#M526447</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Double check the formats of your number separators at the beginning of your script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your numbers are parsed correctly, all values should be right aligned in a list box by default.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Dec 2015 17:44:16 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2015-12-03T17:44:16Z</dc:date>
    <item>
      <title>Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948697#M526446</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;I am trying to convert these amounts to money by choosing 'Money' in Number tab in chart properties. Only some of the amounts are getting converted to money while the rest are not. I realized that the numbers having a 'comma' are the ones not getting converted to money. How do I solve this? Please Help.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="df.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/108010_df.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 17:11:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948697#M526446</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-03T17:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948698#M526447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Double check the formats of your number separators at the beginning of your script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your numbers are parsed correctly, all values should be right aligned in a list box by default.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 17:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948698#M526447</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-12-03T17:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948699#M526448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looked that you have a mix of numeric- and string-values in your dimension. In this case you need to make sure that all your values are numeric - this could be done in script by using num#(yourvalue, 'YourFormat') maybe within an if-loop to catch the differences of all their values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 17:44:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948699#M526448</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-03T17:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948700#M526449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandni, I think that this happens because some numbers are strings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, first of all, convert the strings to numbers and then apply the money format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To convert strings to number apply this function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;num(Num#([YOUR_VALUE&lt;/SPAN&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;],'###,###.####','.',','),'##&lt;/SPAN&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#,###.##')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;I hope that it help you,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Agustín&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 17:50:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948700#M526449</guid>
      <dc:creator />
      <dc:date>2015-12-03T17:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948701#M526450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 16:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948701#M526450</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-04T16:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Number Format</title>
      <link>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948702#M526451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 16:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Number-Format/m-p/948702#M526451</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-04T16:56:23Z</dc:date>
    </item>
  </channel>
</rss>

