<?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 Comma and dots as thousand in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Comma-and-dots-as-thousand/m-p/673509#M668808</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;People, I need some help.&lt;/P&gt;&lt;P&gt;I have CSV file where values are integers (values represents number of units) separated by comma as thousands.&lt;/P&gt;&lt;P&gt;My system default is comma as decimals and dot as thousands. So here comes the confusion.&lt;/P&gt;&lt;P&gt;CSV files are loaded as [ValorTemp] field and after becomes [Valor] as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;SET ThousandSep='.';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;SET DecimalSep=',';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;A:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;LOAD Distinct * //here there is a field [ValorTemp]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;FROM E:\PSI*.csv;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;B:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;NoConcatenate &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;Load Distinct *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;&amp;nbsp; Num#(ValorTemp, '###', '.' , ',' ) As Valor, //[ValorTemp] becomes [Valor]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;Resident A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;&amp;nbsp; Where ValorTemp &amp;lt;&amp;gt; 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;Drop Field ValorTemp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;Drop Table A;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In CSV I have an entry as 1,320 (one thousand three hundred and twenty units). In Qlikview table 'B' I also have 1,320, but I am not sure if it is being considered as "one thousand three hundred and twenty units" or "one unit and third two hundreds".&lt;/P&gt;&lt;P&gt;My need is to have Qlikview [Valor] field as 1.320 meaning "one thousand three hundred and twenty units". As my data has only integers entries, a comma should never appear according to my system default.&lt;/P&gt;&lt;P&gt;Can anyone help me to find the mistake?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Oct 2014 18:01:25 GMT</pubDate>
    <dc:creator>h_demarco</dc:creator>
    <dc:date>2014-10-21T18:01:25Z</dc:date>
    <item>
      <title>Comma and dots as thousand</title>
      <link>https://community.qlik.com/t5/QlikView/Comma-and-dots-as-thousand/m-p/673509#M668808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;People, I need some help.&lt;/P&gt;&lt;P&gt;I have CSV file where values are integers (values represents number of units) separated by comma as thousands.&lt;/P&gt;&lt;P&gt;My system default is comma as decimals and dot as thousands. So here comes the confusion.&lt;/P&gt;&lt;P&gt;CSV files are loaded as [ValorTemp] field and after becomes [Valor] as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;SET ThousandSep='.';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;SET DecimalSep=',';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;A:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;LOAD Distinct * //here there is a field [ValorTemp]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;FROM E:\PSI*.csv;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;B:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;NoConcatenate &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;Load Distinct *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;&amp;nbsp; Num#(ValorTemp, '###', '.' , ',' ) As Valor, //[ValorTemp] becomes [Valor]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;Resident A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;&amp;nbsp; Where ValorTemp &amp;lt;&amp;gt; 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt;"&gt;Drop Field ValorTemp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;Drop Table A;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In CSV I have an entry as 1,320 (one thousand three hundred and twenty units). In Qlikview table 'B' I also have 1,320, but I am not sure if it is being considered as "one thousand three hundred and twenty units" or "one unit and third two hundreds".&lt;/P&gt;&lt;P&gt;My need is to have Qlikview [Valor] field as 1.320 meaning "one thousand three hundred and twenty units". As my data has only integers entries, a comma should never appear according to my system default.&lt;/P&gt;&lt;P&gt;Can anyone help me to find the mistake?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 18:01:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comma-and-dots-as-thousand/m-p/673509#M668808</guid>
      <dc:creator>h_demarco</dc:creator>
      <dc:date>2014-10-21T18:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Comma and dots as thousand</title>
      <link>https://community.qlik.com/t5/QlikView/Comma-and-dots-as-thousand/m-p/673510#M668809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regardless of what you loaded in here is an example of formatting a chart and text box with the same numbers the way would want. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may want to wrap your num#()&amp;nbsp; function in the load with a num() function that formats it the way you want. Think of num#() being used to tell qlik how to intepret the source values and num() telling qlikview how to display the result by default in the UI.&amp;nbsp;&amp;nbsp; num#() is input , num() is output and you can nest/wrap them. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/69413_Capture.PNG.png" style="width: 620px; height: 138px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 18:16:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comma-and-dots-as-thousand/m-p/673510#M668809</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-10-21T18:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Comma and dots as thousand</title>
      <link>https://community.qlik.com/t5/QlikView/Comma-and-dots-as-thousand/m-p/673511#M668810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jonathan, thank you very much.&lt;/P&gt;&lt;P&gt;Despite having a way to solve it by using properties tabs, your explanation about input and output was the solution of my problem. I had no idea about Num# and Num.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 18:58:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comma-and-dots-as-thousand/m-p/673511#M668810</guid>
      <dc:creator>h_demarco</dc:creator>
      <dc:date>2014-10-21T18:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Comma and dots as thousand</title>
      <link>https://community.qlik.com/t5/QlikView/Comma-and-dots-as-thousand/m-p/673512#M668811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Henrique,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please follow this link to learn all about&amp;nbsp; Num# and Num, Date# and Date:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/servlet/JiveServlet/previewBody/3102-102-4-4191/DateFields-TechBrief-US_v2.pdf" title="http://community.qlik.com/servlet/JiveServlet/previewBody/3102-102-4-4191/DateFields-TechBrief-US_v2.pdf"&gt;http://community.qlik.com/servlet/JiveServlet/previewBody/3102-102-4-4191/DateFields-TechBrief-US_v2.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Burkhard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 19:04:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comma-and-dots-as-thousand/m-p/673512#M668811</guid>
      <dc:creator>veidlburkhard</dc:creator>
      <dc:date>2014-10-21T19:04:52Z</dc:date>
    </item>
  </channel>
</rss>

