<?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: Commas and dots formatting in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808791#M285461</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;num(1234567/100000, '#.##0')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Feb 2015 01:50:14 GMT</pubDate>
    <dc:creator>Oleg_Troyansky</dc:creator>
    <dc:date>2015-02-16T01:50:14Z</dc:date>
    <item>
      <title>Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808790#M285460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my locality we use a dot as a thousand separator an a comma for decimal.&lt;/P&gt;&lt;P&gt;i.e. &lt;/P&gt;&lt;P&gt;SET ThousandSep='.';&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;SET DecimalSep=',';&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;SET MoneyThousandSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='€#.##0,00;-€#.##0,00';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The number thirty thousand one hundred point 40 would be represented as:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;34.100,40&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is correct so far. However, I have a map extension which expects numbers in the more "traditional" format of commas for thousands and point for the decimal part so &lt;STRONG&gt;34,100.40&lt;/STRONG&gt; for the above number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field (lets call it &lt;STRONG&gt;Lat&lt;/STRONG&gt;) which arrives as a 7 digit number (e.g. 1234567) which need to be divided by 100000 and be saved as "12.34567")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried:&lt;/P&gt;&lt;P&gt;= num#((1234567/100000), '#.#', '.', ',') and it does not appear to work - it always returns "12,34567"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ideas&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 01:20:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808790#M285460</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-16T01:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808791#M285461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;num(1234567/100000, '#.##0')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 01:50:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808791#M285461</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2015-02-16T01:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808792#M285462</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 this&lt;/P&gt;&lt;P&gt;= Num(1234567/100000, '###0.00000', '.' )&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>Mon, 16 Feb 2015 02:59:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808792#M285462</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-16T02:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808793#M285463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oleg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your suggestion returns a result of "12"&lt;/P&gt;&lt;P&gt;I am expecting the result to be "12.34567"&lt;/P&gt;&lt;P&gt;Please remember that my "default" setup uses "." for thousands and commas for decimals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for responding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 07:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808793#M285463</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-16T07:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808794#M285464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your suggestion returns a result of "0.00012"&lt;/P&gt;&lt;P&gt;I am expecting the result to be "12.34567"&lt;/P&gt;&lt;P&gt;Please remember that my "default" setup uses "." for thousands and commas for decimals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for responding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 09:30:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808794#M285464</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-16T09:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808795#M285465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this, it is working for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Num#(1234567/100000, '###0,00000', ',')&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>Mon, 16 Feb 2015 11:04:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808795#M285465</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-16T11:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808796#M285466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get 12,34567&lt;/P&gt;&lt;P&gt;I need to get 12.34567&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for trying - I'll have to find an alternative solution..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 11:23:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808796#M285466</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-16T11:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808797#M285467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you just need to change the function used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;=Num#&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(1234567/100000, '###0.00000', '.' ) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;should give you the desired result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope that helps&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 11:31:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808797#M285467</guid>
      <dc:creator />
      <dc:date>2015-02-16T11:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808798#M285468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Joe&lt;/P&gt;&lt;P&gt;Same result: 12,34567&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have different regional settings to you I am fairly certain...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 12:10:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808798#M285468</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-16T12:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808799#M285469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use replace in more than 1 step. Like this:&lt;/P&gt;&lt;P&gt;1 replace the . with something&lt;/P&gt;&lt;P&gt;2 replace the , with a .&lt;/P&gt;&lt;P&gt;3 replae something with a ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;replace(replace(replace(&amp;lt;your field&amp;gt;, '.', '_'), ',','.'), '_',',')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 12:31:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808799#M285469</guid>
      <dc:creator>Michiel_QV_Fan</dc:creator>
      <dc:date>2015-02-16T12:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808800#M285470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the inverse - my regional settings are . for decimal and &amp;lt;space&amp;gt; for 000s, so I tried to make it display the other way round:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Environment:&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;The expression&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;=num((1234567/100000), '#.#'')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;returns 12.3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=num((1234567/100000), '#,#', ',', '.')&lt;/P&gt;&lt;P&gt;return 12,3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So one would think it should work for you in the opposite direction. Make sure you run the load to apply the environment settings. What version are you running?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 12:35:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808800#M285470</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-02-16T12:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808801#M285471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes your solution produced the desired result but I cannot change the regional settings universally in my application.&lt;/P&gt;&lt;P&gt;My requirement is driven by the fact that the mapping extension that I am using is expecting coordinates in the form 99.9999999 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helping out&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 13:12:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808801#M285471</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-16T13:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808802#M285472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michiel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The replace method is good but it creates a string field. I need to pass these values to an API (that expects 99.999999) as a numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 13:13:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808802#M285472</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-16T13:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808803#M285473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Strange, I changed my settings when testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you upload an example? Quite interesting that didn't work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 13:34:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808803#M285473</guid>
      <dc:creator />
      <dc:date>2015-02-16T13:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808804#M285474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again Joe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are your environment settings?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 13:39:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808804#M285474</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-16T13:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808805#M285475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just used the same set as yourself&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;SET&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;ThousandSep&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='.';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;DecimalSep&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;=',';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;MoneyThousandSep&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='.';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;MoneyDecimalSep&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;=','; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2015 14:14:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808805#M285475</guid>
      <dc:creator />
      <dc:date>2015-02-16T14:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808806#M285476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alexis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you attach the sample file with your regional settings then it would be easier to give the solution for us.&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>Tue, 17 Feb 2015 02:10:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808806#M285476</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-17T02:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808807#M285477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a new application and put everyone's suggestions on it - and voila!!&lt;/P&gt;&lt;P&gt;For some reason it was not working for me within the application that I am creating so my problem is elsewhere and not with the formatting..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you Jagan and Jow for your suggestions/help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="_delete.jpg" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/78315__delete.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 09:24:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808807#M285477</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-17T09:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Commas and dots formatting</title>
      <link>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808808#M285478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a new application (at Jagan's request) and put everyone's suggestions on it - and voila!! &lt;/P&gt;&lt;P&gt;For some reason it was not working for me within the application that I am creating so my problem is elsewhere and not with the formatting..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you and Jagan for your suggestions/help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="_delete.jpg" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/78316__delete.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 09:25:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Commas-and-dots-formatting/m-p/808808#M285478</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2015-02-17T09:25:49Z</dc:date>
    </item>
  </channel>
</rss>

