<?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: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522726#M195287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correctly, just replace Value with your expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Dec 2013 19:39:53 GMT</pubDate>
    <dc:creator>rbecher</dc:creator>
    <dc:date>2013-12-03T19:39:53Z</dc:date>
    <item>
      <title>Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522723#M195284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am developing a chart in which the accounts that will be viewed vary GREATLY by size and some will have sales in tens of millions while others in the low thousands; is there a way for number formats to automatically adjust to display a short num format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can do it manually by adding like "/1000" at the end of the expression and then in the number format adding a 'K' to the end so 10,000 would display as 10k but this will not be very dynamic when accounts go into the millions. For example a 10,000,000 account would show as 10,000k which is kind of confusing (ten thousand thousand).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help or tips are appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Stephan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 19:13:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522723#M195284</guid>
      <dc:creator />
      <dc:date>2013-12-03T19:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522724#M195285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use an expression like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13860981840889486" jivemacro_uid="_13860981840889486" modifiedtitle="true"&gt;
&lt;P&gt;=If(Value &amp;gt; 1E6, Round(Value/1E6, 1) &amp;amp; 'M',&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; If(Value &amp;gt; 1E3, Round(Value/1E3, 1) &amp;amp; 'k',&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value))&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But a standard format code would be better obviously.. Also, the division could lead into rounding issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 19:17:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522724#M195285</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-12-03T19:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522725#M195286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey thanks for the quick reply!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This may be a silly question but would your expression be used in my actual expressions section where I would replace 'Value' with my current calculation? Or would it go somewhere in the number formatting tab?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 19:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522725#M195286</guid>
      <dc:creator />
      <dc:date>2013-12-03T19:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522726#M195287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correctly, just replace Value with your expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 19:39:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522726#M195287</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-12-03T19:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522727#M195288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmmm; I tried plugging it in and It's saying no data to display even though it says expression is OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My current expression is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If((sum($(vMetric))) &amp;gt; 1E6, Round((sum($(vMetric)))/1E6, 1) &amp;amp; 'M',&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If((sum($(vMetric))) &amp;gt; 1E3, Round((sum($(vMetric)))/1E3, 1) &amp;amp; 'k',&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (sum($(vMetric)))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where I used sum($(vMetric)) in place of Value because I am using buttons to change the metric (from dollars to quantity sold); could this be causing an issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 19:46:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522727#M195288</guid>
      <dc:creator />
      <dc:date>2013-12-03T19:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522728#M195289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hm I took out the symbols ( &amp;amp; 'M') and it works now; I am using this in a line chart and adding the M makes the resulting value not a regular number and thus cannot really be measured. Now I need to find out how to add the M and K using the number tab I guess?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 19:54:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522728#M195289</guid>
      <dc:creator />
      <dc:date>2013-12-03T19:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522729#M195290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Try converting the result of the rounding to text using the text() formula&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Sorry, just saw that you are using it in a line chart. Of course a text will not help anything there ...&lt;/P&gt;&lt;P&gt;But why don't you just use the default possibility of adding 'm' and 'k' from the numbers tab anyways?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 20:08:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522729#M195290</guid>
      <dc:creator />
      <dc:date>2013-12-03T20:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522730#M195291</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;Try using the dual function:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If((sum($(vMetric))) &amp;gt; 1E6, dual(Round((sum($(vMetric)))/1E6, 1) &amp;amp; 'M', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Round((sum($(vMetric)))/1E6, 1)&lt;/SPAN&gt;), &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; If((sum($(vMetric))) &amp;gt; 1E3, dual(Round((sum($(vMetric)))/1E3, 1) &amp;amp; 'k', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Round((sum($(vMetric)))/1E3, 1)&lt;/SPAN&gt;), &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (sum($(vMetric)))))&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;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 20:19:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522730#M195291</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2013-12-03T20:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522731#M195292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unless I am crazy; that functionality does not seem to work for me. How is it correctly implemented?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I put a K in thousands symbol, M in million, and B in billions but it does absolutely nothing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 20:19:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522731#M195292</guid>
      <dc:creator />
      <dc:date>2013-12-03T20:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522732#M195293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This has to do with the if-statement. Eliminate that and just put in sum($(vMetric)) and let the number tab take care of the rest. Than the 'k', 'm' and 'b' should appear. I have an example application for you&lt;SPAN style="text-decoration: line-through;"&gt;, but still need to figure out how to upload it here ..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Here you go:&lt;SPAN style="text-decoration: line-through;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-5438"&gt;number_format.qvw&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-- edit: This only shortens the axis though, not the numbers in the chart. --&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 20:26:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522732#M195293</guid>
      <dc:creator />
      <dc:date>2013-12-03T20:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522733#M195294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This does not seem to display the M/K symbols. (I am using a line chart; I don't know if anything other than actual numbers can really work here)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 20:27:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522733#M195294</guid>
      <dc:creator />
      <dc:date>2013-12-03T20:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522734#M195295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems to be on an example I made:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="49921" alt="Line.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/49921_Line.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;Think you will have to put expression default for that expression on the numbers tab. If you have a number format, it will take the number value instead of the text of the dual function. Also, be careful in the sorting, in the example I gave 177M will be placed at the same level as 177k. So you will probably have to use just:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;dual(Round((sum($(vMetric)))/1E6, 1) &amp;amp; 'M',&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum($(vMetric))&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;dual(Round((sum($(vMetric)))/1E3, 1) &amp;amp; 'k',&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum($(vMetric))&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 20:41:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522734#M195295</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2013-12-03T20:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522735#M195296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, this seems to be working best so far once I changed the number setting to expression default, however it is rounding to whole numbers. I tried tweaking the value after the condition which I believe is what sets how many decimals it rounds to but that does not seem to be working. I would like one decimal point to display as a lot of the values are in single digit millions where it is not appropriate to round something like 4.6M and 5.4M boht to 5M.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where would I adjust this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 21:46:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522735#M195296</guid>
      <dc:creator />
      <dc:date>2013-12-03T21:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522736#M195297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah the issue is moreso the numbers in the chart rather than the Axis... any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Stephan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 23:21:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522736#M195297</guid>
      <dc:creator />
      <dc:date>2013-12-03T23:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Possible to autoformat numbers? (IE 1,700,000=1.7m and 700,000=700k)</title>
      <link>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522737#M195298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, that got me confused as well. The second parameter of the round is not the number of decimal places. The correct syntax is: round(xyz,0.1) (or 1, 0.01, 0.001, 0.0001, ...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 07:53:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Possible-to-autoformat-numbers-IE-1-700-000-1-7m-and-700-000/m-p/522737#M195298</guid>
      <dc:creator />
      <dc:date>2013-12-04T07:53:37Z</dc:date>
    </item>
  </channel>
</rss>

