Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Info on using exchange Rates

I have to add a module that will allow an application to display transactions in different exchange rates. There is a table with the an exchange rate for each month. Is there a demo app or resource that can be downloaded already that shows how to add this functionality.

Any help is appreciated.

Paul

ps. this is my first post. I am a new developer.

1 Solution

Accepted Solutions
justinasp
Creator
Creator

Hi Paul,

try to join yearmonth data with exchange range, something like that:


temp:
load *inline
[
yearmonth, sales_usd
200901, 15000
200902, 14000
200903, 15500
200904, 14500
];
left join
load * inline
[
yearmonth, usd_to_eur
200901, '0,728'
200902, '0,729'
200903, '0,726'
200904, '0,727'
];
sales:
load yearmonth,
usd_to_eur,
sum(sales_usd) as sales_usd,
sum(sales_usd*usd_to_eur) as sales_eur
resident temp
group by yearmonth,usd_to_eur;
drop table temp;


Good luck!

And try using "APIguide.qvw" that you could find somewhere like "C:\Program Files\QlikView\Documentation\"

Justinas

View solution in original post

4 Replies
disqr_rm
Partner - Specialist III
Partner - Specialist III

.

justinasp
Creator
Creator

Hi Paul,

try to join yearmonth data with exchange range, something like that:


temp:
load *inline
[
yearmonth, sales_usd
200901, 15000
200902, 14000
200903, 15500
200904, 14500
];
left join
load * inline
[
yearmonth, usd_to_eur
200901, '0,728'
200902, '0,729'
200903, '0,726'
200904, '0,727'
];
sales:
load yearmonth,
usd_to_eur,
sum(sales_usd) as sales_usd,
sum(sales_usd*usd_to_eur) as sales_eur
resident temp
group by yearmonth,usd_to_eur;
drop table temp;


Good luck!

And try using "APIguide.qvw" that you could find somewhere like "C:\Program Files\QlikView\Documentation\"

Justinas

Not applicable
Author

There is a good currency App under Share Qlikviews by Stephen Redmond which is worth a look it is called

Currency Demo v.2


Hope this is of help
Neil
Not applicable
Author

Hi Neil,

this application seems not to be available anymore. Could you post it?

regards