<?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: Currency tabel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300815#M460238</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronald. I went through the data today and it seems it takes the wrong exchange rate to the dates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want it to take the last updated exchange rate and fill the empty cell. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fx. &lt;/P&gt;&lt;P&gt;if I am looking at July 2015, there was to exchange rate updates. &lt;/P&gt;&lt;P&gt;2015-07-04 at 746,0712&lt;/P&gt;&lt;P&gt;2015-07-31 at 746,2636&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my table, the dates in between these two are 746,2636 when it should have been 746,0712.&lt;/P&gt;&lt;P&gt;Do you know where it goes wrong? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again thank you for your help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2017 13:12:37 GMT</pubDate>
    <dc:creator>vilstrup</dc:creator>
    <dc:date>2017-06-20T13:12:37Z</dc:date>
    <item>
      <title>Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300809#M460232</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;I have been sitting with a problem for a week now. I can't seem to find the solution by myself, so I am hoping one of you guys could help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am loading data from an axapta 2009 extract database and I am trying to convert my inventrans to the right currency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is that the EXCHRATES table only has rows from when the rate has changed. That means that I can't key my inventrans to my exchangerate and there by multiply to get the right balance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have search the internet and found some different approaches. The best one i found was this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLEDB CONNECT32 TO [Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=Ax2009Extract;Data Source=dkrmed465\dkrmed465;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=LAP0000264;Use Encryption for Data=False;Tag with column collation when possible=False];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempTable_Rates:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Date(FROMDATE,'YYYY-MM-DD') as FROMDATE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; EXCHRATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CURRENCYCODE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATAAREAID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where DATAAREAID like 'rme'&amp;nbsp; // This is to get the currency to danish krones.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and Year(FROMDATE) &amp;gt;= '2015'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and CURRENCYCODE = 'USD'&lt;SPAN style="font-size: 10pt;"&gt; ; // If i comment this out it doesent work. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;/P&gt;&lt;P&gt;FROMDATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXCHRATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TODATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATAAREAID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CURRENCYCODE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATAAREAID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM Ax2009Extract.dbo.EXCHRATES&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MinMaxDate:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Min(FROMDATE) As MinDate, Max(FROMDATE) As MaxDate resident TempTable_Rates;&lt;/P&gt;&lt;P&gt;Let vMinDate = Peek('MinDate',-1,'MinMaxDate')-1;&lt;/P&gt;&lt;P&gt;Let vMaxDate = Peek('MaxDate',-1,'MinMaxDate') ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join (TempTable_Rates)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load Date(recno()+($(vMinDate))) as FROMDATE Autogenerate vMaxDate - vMinDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rates:&lt;/P&gt;&lt;P&gt;NoConcatenate Load&lt;/P&gt;&lt;P&gt;//Denne laver en nøgle til Danaherkalenderen&lt;/P&gt;&lt;P&gt;Date(FROMDATE,'YYYY-MM-DD') as FROMDATE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( IsNull(EXCHRATE), Peek(EXCHRATE),EXCHRATE) as EXCHRATE,&lt;/P&gt;&lt;P&gt;if( IsNull(CURRENCYCODE), Peek(CURRENCYCODE),CURRENCYCODE)as CURRENCYCODE,&lt;/P&gt;&lt;P&gt;if( IsNull(DATAAREAID), Peek(DATAAREAID),DATAAREAID)as DATAAREAID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident TempTable_Rates&lt;/P&gt;&lt;P&gt;Order By FROMDATE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table MinMaxDate, TempTable_Rates;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem with this is that it only works when i am loading one currency. In this example USD.&lt;/P&gt;&lt;P&gt;The code populates all the dates in between and adds the latest currency to these dates which are exactly what i need.&lt;/P&gt;&lt;P&gt;But when i am loading all the different currencies it doesn't work. as shown on the pictures below. Does anyone have a solution to my problem?&lt;/P&gt;&lt;P&gt;Can i load all the different currencies and then join them together or could i add something to the code so that it will populate all the dates for all the different currency codes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance all of you &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="167059" alt="currency with only USD.PNG" class="jive-image image-1" src="/legacyfs/online/167059_currency with only USD.PNG" style="height: 761px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="167070" alt="currency with all.PNG" class="jive-image image-2" src="/legacyfs/online/167070_currency with all.PNG" style="height: 745px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 07:46:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300809#M460232</guid>
      <dc:creator>vilstrup</dc:creator>
      <dc:date>2017-06-16T07:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300810#M460233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicolai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you order by CURRENCYCODE, FROMDATE wouldn't it work?&lt;/P&gt;&lt;P&gt;Could you share an example QVW so I can try to help you solve this in there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With kind regards,&lt;/P&gt;&lt;P&gt;Ronald&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 07:55:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300810#M460233</guid>
      <dc:creator>RonaldDoes</dc:creator>
      <dc:date>2017-06-16T07:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300811#M460234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronald, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have attached the application now. Thank you for trying &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 08:02:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300811#M460234</guid>
      <dc:creator>vilstrup</dc:creator>
      <dc:date>2017-06-16T08:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300812#M460235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicolai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since of course I do not have access to your OLEDB connection, I had to make up some data. However, you should be able to uncomment your script and comment mine, and it should work. For reference however, I have attached my sample data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Furthermore, I borrowed the excellent solution to your problem by &lt;A href="https://community.qlik.com/qlik-users/37473"&gt;martinpohl&lt;/A&gt; here: &lt;A href="https://community.qlik.com/thread/155174"&gt;Filling the missing dates for exchange rates&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="php" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14976145342316613" jivemacro_uid="_14976145342316613"&gt;
&lt;P&gt;LOAD Date(FROMDATE,'YYYY-MM-DD') as FROMDATE,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXCHRATE, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CURRENCYCODE, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATAAREAID&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;Demo.xlsx&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is Fixed)&lt;/P&gt;
&lt;P&gt;Where DATAAREAID = 'rme' and Year(FROMDATE) &amp;gt;= '2015';&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;MinMaxDate:&lt;/P&gt;
&lt;P&gt;Load Min(FROMDATE) as MinDate, Max(FROMDATE) as MaxDate resident TempTable_Rates;&lt;/P&gt;
&lt;P&gt;Let vMinDate = Peek('MinDate',-1,'MinMaxDate') - 1;&lt;/P&gt;
&lt;P&gt;Let vMaxDate = Peek('MaxDate',-1,'MinMaxDate') ;&lt;/P&gt;
&lt;P&gt;Drop Table MinMaxDate;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Date_Currency:&lt;/P&gt;
&lt;P&gt;Load Date(recno()+$(vMinDate)) as FROMDATE Autogenerate vMaxDate - vMinDate;&lt;/P&gt;
&lt;P&gt;//here join all currency from your datas&lt;/P&gt;
&lt;P&gt;left join load distinct CURRENCYCODE resident TempTable_Rates;&lt;/P&gt;
&lt;P&gt;//join all dates and all currencys to datas&lt;/P&gt;
&lt;P&gt;outer Join (TempTable_Rates) load * resident Date_Currency;&lt;/P&gt;
&lt;P&gt;//drop temporary table&lt;/P&gt;
&lt;P&gt;drop table Date_Currency;&lt;/P&gt;
&lt;P&gt;Rates:&lt;/P&gt;
&lt;P&gt;NoConcatenate Load FROMDATE,&lt;/P&gt;
&lt;P&gt;If( IsNull( EXCHRATE ),if(peek(CURRENCYCODE)=CURRENCYCODE,Peek( EXCHRATE ), EXCHRATE ),EXCHRATE) as EXCHRATE,CURRENCYCODE&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Resident TempTable_Rates&lt;/P&gt;
&lt;P&gt;Order By CURRENCYCODE,FROMDATE desc ;&lt;/P&gt;
&lt;P&gt;Drop Table TempTable_Rates;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 12:02:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300812#M460235</guid>
      <dc:creator>RonaldDoes</dc:creator>
      <dc:date>2017-06-16T12:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300813#M460236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT works just as i wanted. Ronald, thank you soo much for your help ! I really appreciate it! You seriously just saved my weekend ! &lt;/P&gt;&lt;P&gt;Thaaaaank you ! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 12:10:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300813#M460236</guid>
      <dc:creator>vilstrup</dc:creator>
      <dc:date>2017-06-16T12:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300814#M460237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great to hear. Although this is exciting stuff and all, I'm certain you'll have better things to do in your weekend. Enjoy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 12:13:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300814#M460237</guid>
      <dc:creator>RonaldDoes</dc:creator>
      <dc:date>2017-06-16T12:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300815#M460238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronald. I went through the data today and it seems it takes the wrong exchange rate to the dates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want it to take the last updated exchange rate and fill the empty cell. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fx. &lt;/P&gt;&lt;P&gt;if I am looking at July 2015, there was to exchange rate updates. &lt;/P&gt;&lt;P&gt;2015-07-04 at 746,0712&lt;/P&gt;&lt;P&gt;2015-07-31 at 746,2636&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my table, the dates in between these two are 746,2636 when it should have been 746,0712.&lt;/P&gt;&lt;P&gt;Do you know where it goes wrong? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again thank you for your help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2017 13:12:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300815#M460238</guid>
      <dc:creator>vilstrup</dc:creator>
      <dc:date>2017-06-20T13:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300816#M460239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might want to change:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f8f8f8; color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f8f8f8; color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Order By CURRENCYCODE,FROMDATE desc; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f8f8f8; color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;into&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f8f8f8; color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;Order By CURRENCYCODE,FROMDATE asc; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2017 13:18:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300816#M460239</guid>
      <dc:creator>RonaldDoes</dc:creator>
      <dc:date>2017-06-20T13:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300817#M460240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It did the trick! I have to read up on that &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; Thank you ! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2017 13:24:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300817#M460240</guid>
      <dc:creator>vilstrup</dc:creator>
      <dc:date>2017-06-20T13:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Currency tabel</title>
      <link>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300818#M460241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great to hear it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's not really that complicated. We changed the order in which we work through all dates (picking the exchange rate of the previous day if empty) from descending (so 31-12, 30-12, 29-12) to ascending (so 29-12, 30-12, 31-12).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2017 13:44:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Currency-tabel/m-p/1300818#M460241</guid>
      <dc:creator>RonaldDoes</dc:creator>
      <dc:date>2017-06-20T13:44:47Z</dc:date>
    </item>
  </channel>
</rss>

