Excel Currency Converter Live
Jul 16, 2013 - I am trying to check the hydraulic fluid on my C5, 2.0 petrol estate 2003 vintage. Unlike my previous Citroens, xm and Xantia I see no level.
This Excel addin gets you the live currency conversion data in Excel for free and exposes various currency related functions which helps you convert one currency to another very easily. I have an excel file with three worksheets(ws), the first two have raw data and the third one contains formula to compare the data in other two ws. For example, here is an example of my comparison.
Excel Currency Converter Live Rates
Als315 suggested a VLOOKUP formula for currency conversion. When using formulas like this, it is important to keep track of when you need to multiply by the conversion factor, and when it should be divided by.For example, for UK Pounds, the conversion factor might be $1.50 US Dollar = 1.0 pound sterling. The formula to convert an amount of US dollars in cell A2 into UK pounds sterling should be:=A2/VLOOKUP(C2,Sheet2!$A$2:$B$3,2, FALSE)And the formula to get an amount of US dollars that equal a given amount in UK pounds would be:=A2.VLOOKUP(C2,Sheet2!$A$2:$B$3,2, FALSE)I thought it might be nice to get currency exchange rates from a web site using a data query so they can be kept current.
I chose for this purpose.I then added some VBA code so you could enter either an amount of US currency or foreign currency and get the corresponding amount in the other currency. This code must be installed in the code pane for the worksheet. After rereading your question, I see that you have a column of conversions to make. So revised the code so it watches rows 2 through 10 for entry of either US dollars in column A or a foreign currency in column C.
The name of the foreign currency is specified in column D.