A simple currency conversion one I hope!

chally3

Board Regular
Joined
Mar 22, 2006
Messages
155
Hi everyone, Hopefully a simple one for someone but I cannot get it to work!

I’m trying to convert all currencies on a spreadsheet to USD
Column B has the base price, Column C has either (GBP,USD,EUR).

What I am wishing to do is in column D show a USD price only , so if column C says GBP or Euro multiply it by the conversion below , or just copy if its already in USD

GBP to USD = 1.16
EURO to USD = 1.13

Any help appreciated
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hey chally3,

Use an IF statement to check whether the C column shows GBP or EUR.

E.g. Set cell D1 to the following formula:
=IF(C1="GBP",B1*1.16,IF(C1="EUR",B1*1.13,B1))
 
Last edited:
Upvote 0

Book1
BCDEFG
1GBP1.16
21USD1EURO1.13
32GBP2.32
43EURO3.39
54USD4
65EURO5.65
76USD6
Sheet1
Cell Formulas
RangeFormula
D2=IF(C2="usd",B2,IF(C2="GBP",B2*$G$1,IF(C2="euro",B2*$G$2,"not a valid currency abbreviation")))


Copy formula down
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

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