currency conversion

  • Thread starter Colin Basterfield
  • Start date
C

Colin Basterfield

Hi

I am trying to consolidate excel budget info from about 5 different
countries with different
currencies. Is there a tool that allows me to convert all of these into,
for example, Euros
or US dollars using todays exchange rates?

Any info is much appreciated!

Thanks
Susan
 
B

Bob Phillips

Colin,

Setup a web query
Data>External Data>Web Query
with a URL of
http://www.x-rates.com/d/USD/table.html
to get the rates onto a spreadsheet, and then to access the rates use a
formula like
=INDEX(C1:C1000,MATCH("Euro",TRIM(B1:B1000),0),1)
to get the Euro to USD rate or
=INDEX(D1:D1000,MATCH("Euro",TRIM(B1:B1000),0),1)
to get the USD to Euro rate

These formula are array formula so enter with Ctrl-Shift-Enter.
--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top