Converting Multiple Currencies t one

Brandy2015

New Member
Joined
Jan 15, 2016
Messages
2
Hi,

Apologies if this has been asked before but I've a table with multiple currencies on the same sheet. I want to convert this to one currency. So for example

A B C D
1 £100,000 $350,000 USD 1.5
2 $350,000 €250,000 Euro 1.65
3 €200,000 £400,000
4 €250,000 £100,000
5 £400,000 $350,000

On column E I would like to have the figures in column A converted to GBP using the exchange rates in column D. On column F I would like the figures in column B converted to GBP.

thanks for any help with this.
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
This will do what you ask, but the formulas must be entered manually because there is no easy way to make Excel detect in which currency the values are formatted. [N.B. The values in Value1 and Value2 are values formatted as various currencies; the $ symbol is not typed into the cell.]

When looking at a cross-rates currency table, read it from the rows to determine how much of the column-currency the row-currency will buy. For example, One USD will buy 0.667 GBP; on the flip-side, One GPB will buy 1.500 USD.

ABCDEF
1cross ratesUSDGBPEUR
2USD1.00000.66670.6061
3GBP1.50001.00000.9091
4EUR1.65001.10001.0000
5
6value1value2GBPGBP
7£100,000$350,000£100,000£233,333
8$350,000€ 250,000£233,333£275,000
9€ 200,000£400,000£220,000£400,000
10€ 250,000£100,000£275,000£100,000
11£400,000$350,000£400,000£233,333

<tbody>
</tbody>
Sheet4

Worksheet Formulas
CellFormula
E2=1/D3
F2=1/D4
F3=1/E4
E4=D4/D3
E7=A7*E3
F7=B7*E2
E8=A8*E2
F8=B8*E4
E9=A9*E4
F9=B9*E3
E10=A10*E4
F10=B10*E3
E11=A11*E3
F11=B11*E2

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
Thank you Drsteele. I forgot to mention in my original post that there are about 200 rows and 12 columns with the mixed currencies that I need to convert to GBP so manually multiplying the cells would be very time consuming. Is there any formula to help with this?

Thanks
 
Upvote 0
The problem here is that I cannot figure out a way to make Excel determine how each cell is formatted with its currency. If we could do that, we could easily make a lookup algorithm to grab the appropriate rate from the Cross-Currency table. Can your data be altered so that there is a column beside each value that indicates the currency?

Stay tuned while I ruminate.....
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,039
Messages
6,122,802
Members
449,095
Latest member
m_smith_solihull

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top