Hello,
I would need some basic help to solve my problem..
I have an input files which reports a list of products with related price and currencies + the currency in which it has to be converted.
| Product | Price | CCY | CCY to be converted into |
| 1 | 32,50 | EUR | SEK |
| 2 | 10.20 | USD | CAD |
| 3 | 5.25 | EUR | AUS |
| 4 | 8.30 | USD | EUR |
Then I have a separate mapping table where I have the exchange rates for each combination
| From CCY | To CCY | ExRate |
| EUR | SEK | 0.5236 |
| USD | EUR | 1.302 |
How can I map back in my file the currencies so that I can created an additional column which reports the price converted in the To CCY ?
thank you in advance and kind regards
Marta