<?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 Replace dots with commas in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Replace-dots-with-commas/m-p/1835281#M68995</link>
    <description>&lt;P&gt;Hi !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am developing an App using the data load editor (script)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The thing is I connected The app with a website and I am downloading some currency exchange information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The thing is that the numbers are with a dot, and i need them with a coma, ex:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATE ; CE&lt;/P&gt;&lt;P&gt;10/10/03 ; 12.345&lt;/P&gt;&lt;P&gt;12/10/04 ; 13.567&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;etc, etc&lt;/P&gt;&lt;P&gt;And I need :&lt;/P&gt;&lt;P&gt;12,345&amp;nbsp;&lt;/P&gt;&lt;P&gt;13,567&lt;/P&gt;&lt;P&gt;etc etc&lt;/P&gt;&lt;P&gt;In the script I don't have the values, I have the fields:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;CE&lt;/P&gt;&lt;P&gt;FROM....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I need to work with the fields, and the replace function doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe with Num or Num# but I don't know how to make them work,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate some help,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;</description>
    <pubDate>Fri, 10 Sep 2021 18:24:36 GMT</pubDate>
    <dc:creator>FranciscoQ</dc:creator>
    <dc:date>2021-09-10T18:24:36Z</dc:date>
    <item>
      <title>Replace dots with commas</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-dots-with-commas/m-p/1835281#M68995</link>
      <description>&lt;P&gt;Hi !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am developing an App using the data load editor (script)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The thing is I connected The app with a website and I am downloading some currency exchange information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The thing is that the numbers are with a dot, and i need them with a coma, ex:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATE ; CE&lt;/P&gt;&lt;P&gt;10/10/03 ; 12.345&lt;/P&gt;&lt;P&gt;12/10/04 ; 13.567&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;etc, etc&lt;/P&gt;&lt;P&gt;And I need :&lt;/P&gt;&lt;P&gt;12,345&amp;nbsp;&lt;/P&gt;&lt;P&gt;13,567&lt;/P&gt;&lt;P&gt;etc etc&lt;/P&gt;&lt;P&gt;In the script I don't have the values, I have the fields:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;CE&lt;/P&gt;&lt;P&gt;FROM....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I need to work with the fields, and the replace function doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe with Num or Num# but I don't know how to make them work,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate some help,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;</description>
      <pubDate>Fri, 10 Sep 2021 18:24:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-dots-with-commas/m-p/1835281#M68995</guid>
      <dc:creator>FranciscoQ</dc:creator>
      <dc:date>2021-09-10T18:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Replace dots with commas</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-dots-with-commas/m-p/1835404#M69012</link>
      <description>&lt;P&gt;You could try it with: num(num#(CE, '#.#', '.', ','))&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Sun, 12 Sep 2021 10:47:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-dots-with-commas/m-p/1835404#M69012</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-09-12T10:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Replace dots with commas</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-dots-with-commas/m-p/1835419#M69016</link>
      <description>&lt;P&gt;Adding to Marcus' answer, an alterantive would be using:&lt;/P&gt;&lt;P&gt;replace( CE, '.'&amp;nbsp; , ','&amp;nbsp; ) as CE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Sep 2021 14:56:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-dots-with-commas/m-p/1835419#M69016</guid>
      <dc:creator>Gui_Approbato</dc:creator>
      <dc:date>2021-09-12T14:56:03Z</dc:date>
    </item>
  </channel>
</rss>

