<?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 Sum of different currencies in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sum-of-different-currencies/m-p/128154#M19387</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;BR /&gt;Here is a example of my table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="115" style="border: 1px solid rgb(0, 0, 0); width: 220px; height: 103px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;P style="padding-left: 30px;"&gt;Currency&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Amount&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Euro&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;33&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;USD&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;11&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;GBP&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;44&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;AUD&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;22&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How it's possible to sum these different amounts as total in EURO.&lt;BR /&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2018 13:15:18 GMT</pubDate>
    <dc:creator>v_ganchev</dc:creator>
    <dc:date>2018-08-28T13:15:18Z</dc:date>
    <item>
      <title>Sum of different currencies</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-of-different-currencies/m-p/128154#M19387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;BR /&gt;Here is a example of my table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="115" style="border: 1px solid rgb(0, 0, 0); width: 220px; height: 103px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;P style="padding-left: 30px;"&gt;Currency&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Amount&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Euro&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;33&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;USD&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;11&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;GBP&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;44&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;AUD&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;22&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How it's possible to sum these different amounts as total in EURO.&lt;BR /&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 13:15:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-of-different-currencies/m-p/128154#M19387</guid>
      <dc:creator>v_ganchev</dc:creator>
      <dc:date>2018-08-28T13:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of different currencies</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-of-different-currencies/m-p/128155#M19388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create a currency exchange table and then simply multiply by the exchange rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AMOUNTS:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Currency, Amount&lt;/P&gt;&lt;P&gt;EUR,33&lt;/P&gt;&lt;P&gt;USD,11&lt;/P&gt;&lt;P&gt;GBP,44&lt;/P&gt;&lt;P&gt;AUD,22&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CURRXCHANGE:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Currency, xRate&lt;/P&gt;&lt;P&gt;EUR, 1&lt;/P&gt;&lt;P&gt;USD, 1.1&lt;/P&gt;&lt;P&gt;GBP, 1.3&lt;/P&gt;&lt;P&gt;AUD, 2.6&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a table in a sheet in your application you could have an expression like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum( Amount ) * xRate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and have the dimension: Currency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is an overly simplistic example but it is basically this approach...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 20:52:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-of-different-currencies/m-p/128155#M19388</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-08-28T20:52:38Z</dc:date>
    </item>
  </channel>
</rss>

