Keep your exchange rates in one small table and convert any amount with a lookup. Update the rate in the table and every conversion across the sheet refreshes — no formula edits.
The example
€250 converted to USD at 1.08.
| A | B | C | |
|---|---|---|---|
| 1 | Currency | → USD | |
| 2 | EUR | 1.08 | |
| 3 | GBP | 1.27 | |
| 4 | JPY | 0.0067 | |
| 5 | €250 → USD | $270.00 |
The formula
Convert using the matched rate:
How it works
A rate table keeps conversions consistent:
- Store each currency’s rate to USD in a table — how many dollars one unit is worth.
VLOOKUP(currency, table, 2, FALSE)pulls the right rate; multiply by the amount for USD.- To convert USD → foreign, divide instead:
=usdAmount / rate. - Cross-rates (EUR → GBP) go via USD:
=eur * eurRate / gbpRate.
Live rates: Excel 365 with the Currencies data type can pull market rates automatically, and STOCKHISTORY can fetch historical FX. For most sheets a manually maintained rate table is simpler and keeps results stable for a given report.
Try it: interactive demo
Pick a currency and amount → USD.
Variations
USD → foreign
Divide by the rate:
Cross rate (EUR→GBP)
Go through USD:
XLOOKUP (365)
With a not-found message:
Pitfalls & errors
Exact match for codes. Use FALSE — currency codes need an exact lookup, not approximate.
Know your rate direction. Decide whether the table stores units-per-USD or USD-per-unit, and multiply or divide accordingly — getting it backwards is the classic FX error.
Rates change. A static table is a snapshot. Note the rate date, and refresh before relying on conversions for anything material.
Practice workbook
Frequently asked questions
How do I convert currency in Excel?
How do I convert between two non-USD currencies?
Can Excel pull live exchange rates?
Stop fighting formulas. Learn them in a day.
This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class