<?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: Calculating Currency in the Sum column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculating-Currency-in-the-Sum-column/m-p/470978#M486057</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT doesn't works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The formula shows me only the EUROs and note calculatete Dollar in Euros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have an new tipp for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 21 Apr 2013 13:58:46 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-04-21T13:58:46Z</dc:date>
    <item>
      <title>Calculating Currency in the Sum column</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Currency-in-the-Sum-column/m-p/470976#M486055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hej together,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a column with currency and a cloumn amount in one table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="3" cellspacing="0" class="jiveBorder" style="width: 100%; border: 1px solid #000000;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Amount&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Currecncy&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1212&lt;/TD&gt;&lt;TD&gt;EUR&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2145&lt;/TD&gt;&lt;TD&gt;USD&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second Table is the USD and the eychange rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="3" cellspacing="0" class="jiveBorder" style="width: 100%; border: 1px solid #000000;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Currency&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Change Rate&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;USD&lt;/TD&gt;&lt;TD&gt;0,8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, i want the Amount 2145 with the currency USD that calculate the amount with the change rate (0,8) an refresh the amount 2145 with the new amount of the change rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 11:37:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculating-Currency-in-the-Sum-column/m-p/470976#M486055</guid>
      <dc:creator />
      <dc:date>2013-04-19T11:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Currency in the Sum column</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Currency-in-the-Sum-column/m-p/470977#M486056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount, Currency&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1212, EUR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2145, USD&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B:&lt;/P&gt;&lt;P&gt;left join LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Currency, Rate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USD, 0.8&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; &lt;/P&gt;&lt;P&gt;if(isnull(Rate),Amount,Amount*Rate) as Amount, Currency&lt;/P&gt;&lt;P&gt;Resident A;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table A;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 11:49:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculating-Currency-in-the-Sum-column/m-p/470977#M486056</guid>
      <dc:creator>jvitantonio</dc:creator>
      <dc:date>2013-04-19T11:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Currency in the Sum column</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Currency-in-the-Sum-column/m-p/470978#M486057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT doesn't works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The formula shows me only the EUROs and note calculatete Dollar in Euros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have an new tipp for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Apr 2013 13:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculating-Currency-in-the-Sum-column/m-p/470978#M486057</guid>
      <dc:creator />
      <dc:date>2013-04-21T13:58:46Z</dc:date>
    </item>
  </channel>
</rss>

