I have 2 excel files.
1st file: static data. contains a list of items with cash values in multiple currencies
2nd file: connected to database. Pulls live FX rate of multiple FOREX currency pairs
I want to combine the files to create a new column called 'CAD Equivalent' for all of the cash value rows in the 1st file.
Any suggestions on how to introduce the 2nd file to be able to compute the CAD equivalent value?
Table 1 Example
| Item # | Currency | Value |
| 1 | EUR | 100 |
| 2 | CAD | 500 |
| 3 | USD | 2 |
| 4 | CHF | 5 |
Table 2 Example
| Currency From | Currency To | FX Rate |
| CAD | EUR | 1.22 |
| CAD | USD | 1.33 |
| CHF | USD | 1.01 |
Desired Table
| Item # | Currency | Value | CAD Value |
| 1 | EUR | 100 | 122 |
| 2 | CAD | 500 | 500 |