Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
cocobello3
Contributor II
Contributor II

Conversion of currency from $ to EUR

Hi all,

I would like to calculate EUR column from one table with $ values and a conversion table. How can I do this calculation?

QlikSenseConversion.JPG

Thanks for your help and best regards,

 

 

Labels (2)
1 Solution

Accepted Solutions
Or
MVP
MVP

If you simply load these two tables, they will automatically join based on Period and Senario and you should be able to use the formula [$]/[$ / EUR].

You could also elect to JOIN these two tables, since there doesn't seem to be any reason to keep them separate.

Load * From Table1;

LEFT JOIN

Load * From Table2;

View solution in original post

2 Replies
Or
MVP
MVP

If you simply load these two tables, they will automatically join based on Period and Senario and you should be able to use the formula [$]/[$ / EUR].

You could also elect to JOIN these two tables, since there doesn't seem to be any reason to keep them separate.

Load * From Table1;

LEFT JOIN

Load * From Table2;

cocobello3
Contributor II
Contributor II
Author

Thanks for your help !