<?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: How convert string to number for sum() in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-convert-string-to-number-for-sum/m-p/984525#M979999</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Kaushik !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Aug 2015 17:55:08 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-08-24T17:55:08Z</dc:date>
    <item>
      <title>How convert string to number for sum()</title>
      <link>https://community.qlik.com/t5/QlikView/How-convert-string-to-number-for-sum/m-p/984523#M979997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi every body! I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need your help for this issue..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the field "COSTO_TOTAL_OBRA.RPM_ITEM_D" with the values 20 and 29.670,00 but when I do the sum(): sum(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;COSTO_TOTAL_OBRA.RPM_ITEM_D) the result is: 20 (Object text in the image)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that the trouble is that "29.670,00" its a string in place of number, but I don't know how convert this string to number and that then the app shows me the correct result (29.690,00)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attach the script!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="96844" alt="Duda.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/96844_Duda.png" style="height: 195px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Agus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 15:42:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-convert-string-to-number-for-sum/m-p/984523#M979997</guid>
      <dc:creator />
      <dc:date>2015-08-24T15:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: How convert string to number for sum()</title>
      <link>https://community.qlik.com/t5/QlikView/How-convert-string-to-number-for-sum/m-p/984524#M979998</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(Num#(COSTO_TOTAL_OBRA.RPM_ITEM_D,'#.###,##',',','.'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 16:00:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-convert-string-to-number-for-sum/m-p/984524#M979998</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2015-08-24T16:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: How convert string to number for sum()</title>
      <link>https://community.qlik.com/t5/QlikView/How-convert-string-to-number-for-sum/m-p/984525#M979999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Kaushik !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 17:55:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-convert-string-to-number-for-sum/m-p/984525#M979999</guid>
      <dc:creator />
      <dc:date>2015-08-24T17:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: How convert string to number for sum()</title>
      <link>https://community.qlik.com/t5/QlikView/How-convert-string-to-number-for-sum/m-p/984526#M980000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, i supose that your problem is in the separators.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See that you amount is the point (.) and the decimal separator is comma (",").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See example below:&lt;/P&gt;&lt;P&gt;Sumatoria:&lt;/P&gt;&lt;P&gt;LOAD sum(Codigos) as Codigos&lt;/P&gt;&lt;P&gt;FROM &lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="134341" alt="Sum.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/134341_Sum.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2016 18:37:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-convert-string-to-number-for-sum/m-p/984526#M980000</guid>
      <dc:creator />
      <dc:date>2016-08-11T18:37:23Z</dc:date>
    </item>
  </channel>
</rss>

