<?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: Problems with Thousand and Decimal Separator in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problems-with-Thousand-and-Decimal-Separator/m-p/594726#M684644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should use the Num#()-function to override the settings. It has four parameters: Field, format, decimal separator, thousand separator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num#(EnglishNumber,'#','.',',')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num#(GermanNumber,'#',',','.')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Feb 2014 12:53:57 GMT</pubDate>
    <dc:creator>hic</dc:creator>
    <dc:date>2014-02-17T12:53:57Z</dc:date>
    <item>
      <title>Problems with Thousand and Decimal Separator</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Thousand-and-Decimal-Separator/m-p/594724#M684642</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;we are using QlikView to load different Excel files or .txt files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some of them have a German Seperator Logic, like . for Thousands and , for Thousands and others are English.&lt;/P&gt;&lt;P&gt;So the seperaters are switched.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tryed to solve this by using mulitple times the Script command:&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;or the other way around, each time before we load another file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this does not solve our problem. When we load the Englisch files we get no the right numbers in QlikView. Do you have an tips for me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 12:19:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Thousand-and-Decimal-Separator/m-p/594724#M684642</guid>
      <dc:creator />
      <dc:date>2014-02-17T12:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Thousand and Decimal Separator</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Thousand-and-Decimal-Separator/m-p/594725#M684643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have source files in both formats, I only can think on replacing '.' and ','&amp;nbsp; (use the Replace() function ) when loading the files, so all of your resulting tables have the same formatting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 12:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Thousand-and-Decimal-Separator/m-p/594725#M684643</guid>
      <dc:creator>luis_pimentel</dc:creator>
      <dc:date>2014-02-17T12:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Thousand and Decimal Separator</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Thousand-and-Decimal-Separator/m-p/594726#M684644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should use the Num#()-function to override the settings. It has four parameters: Field, format, decimal separator, thousand separator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num#(EnglishNumber,'#','.',',')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num#(GermanNumber,'#',',','.')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 12:53:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Thousand-and-Decimal-Separator/m-p/594726#M684644</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-02-17T12:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Thousand and Decimal Separator</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Thousand-and-Decimal-Separator/m-p/594727#M684645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simple Num# does not work for me but&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Num#(EnglischNumber,'#,##0.0','.',','),'#.##0,0',',','.') as GermanNumer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;works. But I don't think it is the best solution?!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: &lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt; &lt;/TD&gt;&lt;TD&gt;Num#(EnglishNumber,'#','.',',') as GermanNumber,&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;seems also to be working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a possibilty to change mutliple fields with one step?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 16:09:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Thousand-and-Decimal-Separator/m-p/594727#M684645</guid>
      <dc:creator />
      <dc:date>2014-02-17T16:09:35Z</dc:date>
    </item>
  </channel>
</rss>

