Google Sheets Currency Conversion: The Easy Method (2024)

In this tutorial, I will show you how to perform Google Sheets currency conversion. My process uses the GOOGLEFINANCE function.

Below, I’ll cover each aspect of Google Sheets currency conversion. I include detailed examples with practical tips. Please follow along below.

Table of Contents

What is the GOOGLEFINANCE Function

Working with finances can get really tricky, especially with exchange rates which are constantly changing. Luckily, Google Sheets has a convenient function called GOOGLEFINANCE, meant specifically for doing financial calculations.

This is what I use for currency conversion.

The GOOGLEFINANCE function fetches real-time or historical currency information and exchange rates from the Google financewebsite. This saves you both the time and energy it would take to import the exchange rates from another source.

Using GOOGLEFINANCE to Convert Currency in Google Sheets

The GOOGLEFINANCE function is the perfect currency converter Google Sheets tool that fetches currency conversion rates in real-time (well almost in real-time).

You don’t need to search endless databases for the current exchange rates. All you need is the correct formula for this powerful currency converter for Google Sheets. The formula uses currency symbols to track which currency you are changing from and to.

Syntax of the GOOGLEFINANCE Function

So what makes up the currency converter function in Google Sheets? I’ll share the basic syntax of the GOOGLEFINANCE function for currency conversion here:

=GOOGLEFINANCE(“CURRENCY:<source_currency_symbol><target_currency_symbol>”)
Google Sheets Currency Conversion: The Easy Method (1)

Note that this is different than the other common syntax for GOOGLEFINANCE. This function also commonly pulls stock information. The syntax for that looks like this:

=GOOGLEFINANCE(ticker, [attribute])
Google Sheets Currency Conversion: The Easy Method (2)
So, let’s break down that currency converter function a little further.

If you’re familiar with functions in Google Sheets, you’ll understand that this contains two important aspects. You’ll need to enter these to get the currency converter to work. Fortunately, it’s pretty easy to enter the information you’ll want to pull from Google Finance. Here’s what you’ll need to input:

  • source_currency_symbolis a three-letter code for the currency you want to convert from.
  • target_currency_symbol is a three-letter code for the currency you want to convert to.

As promised, I’ll provide a real-world example. Say we want to convert US Dollars to Rupees. In that case, I would write the function:

=GOOGLEFINANCE("CURRENCY:USDINR")

Notice that there is no space between the two currency codes. That’s a common mistake, and it’s easily avoided.

Three-Letter Currency Codes in Google Finance

If you want to convert to other currencies, you’ll need to know the codes. Just like I used in the above example, I would swap out the three-letter code for the currencies I want to convert.

Here are some other most common GOOGLEFINANCE currency codes:

CurrencyCode
US DollarUSD
Japan YenJPY
Canada DollarCAD
Indian RupeeINR
Iran RialIRR
Russia RubleRUB
EuroEUR
Singapore DollarSGD
Hong Kong DollarHKD
United Kingdom PoundGBP

How to Use GOOGLEFINANCE for Real-Time Currency Conversion

Ready for another practical example? I have screenshots below to show how to convert dollars into three other currencies. I included the currencies in column B. Note that I’m using this format to convert currencies in column A to those in column B:

Google Sheets Currency Conversion: The Easy Method (3)

Here’s how to convert currency in Google Sheets to get the exchange rate of dollars to the three currencies in column B:

  1. Select the first cell of the column where you want the results to appear (C2).
  2. Type the formula:
    =GOOGLEFINANCE(“CURRENCY:USDINR”)
  3. Press the return key.

You should see the current exchange rate for the conversion of USD to INR in cell C2.

Google Sheets Currency Conversion: The Easy Method (4)
  1. Alternately, you could even include references to cells in the function, by combining them with the ampersand operator, as follows: =GOOGLEFINANCE(“CURRENCY:”&A2&B2)
  2. Press the return key.
  3. Double-click on the fill handle of cell C2 to copy the formula to the rest of the cells of column C.

You should now see conversion rates for USD to all three currencies shown in the sheet.

Google Sheets Currency Conversion: The Easy Method (5)

Note: The Google finance currency codes are the same as the shorthand codes on the international currency exchanges.

How to Convert USD to INR Using GOOGLEFINANCE

The above steps only get you the conversion rates between two currencies in Google Sheets, but they don’t actually convert money from one currency to another. Let us assume we have the following list of prices in dollars and we want to convert them to INR.

Google Sheets Currency Conversion: The Easy Method (6)

To convert the money in the table above from USD to INR, follow these steps:

  1. Select the first cell of the column where you want the results to appear (B2).
  2. Type the formula:
    =GOOGLEFINANCE("CURRENCY:USDINR")*A2
    Google Sheets Currency Conversion: The Easy Method (7)
  3. Press the return key.
  4. Double-click on the fill handle of cell B2 to copy the formula to the rest of the cells of column C.
  5. You should now see column B populated with prices in INR.
    Google Sheets Currency Conversion: The Easy Method (8)

Notice we simply multiplied the result of the GOOGLEFINANCEfunction with the cell value in column A, in order to convert the price to INR.

Entering your parameters along with just the general GOOGLEFINANCE function is enough to give you an accurate conversion rate.

However, there are other optional parameters that the GOOGLEFINANCE function lets you enter in order to get specifically what you need. For example, you can use it to display historical exchange rates too.

Related Reading: How to Remove a Dollar Sign in Google Sheets

How to Use GOOGLE FINANCE to Fetch Historical Exchange Rates

You can make some alterations to the GOOGLEFINANCE function to fetch Google Sheet exchange rates (or stock prices) over a period of time, instead of just one day. That’s helpful when you want to create more advanced sheets.

Note that the syntax of the GOOGLEFINANCE function gets a little more complex here. You’ll need to add additional variables. To fetch historical exchange rates, the GOOGLEFINANCE function can be customized to the following syntax:

GOOGLEFINANCE("CURRENCY:<source_currency_symbol><target_currency_symbol>", [attribute], [start_date], [number_of_days|end_date], [interval])

Here’s an example of the formula in action. We’ll explain it further in the next section:

Google Sheets Currency Conversion: The Easy Method (9)

In the above syntax, all parameters shown in square brackets are optional. Here’s what they mean:

  • The attribute parameter specifies the type of data you want to be retrieved. This is a string value and its default value is “price”. This means we want real-time price quotes fetched from Google Finance. We have provided a list of attribute values and what they mean at the end of this tutorial.
  • The start_dateparameter specifies the date from when we want the historical data to start
  • In the fourth parameter, you can either specify the end_datefor the historical data or the number of days fromstart_datefor which you want the historical data.
  • The interval parameter specifies the frequency of the returned data. It can be either “DAILY” or “WEEKLY”, depending on your requirements.

How to use GOOGLEFINANCE to Fetch Currency Exchange Rates Over a Time Period

Let us take an example to understand how the GOOGLEFINANCE function can be used to fetch currency rates (USD to INR) from 10th October 2020 to 20th October 2020.

  1. Select a cell from where you want to start displaying the exchange rates. You don’t need to add a header for the columns, since the function adds the column headers automatically.
  2. Type the formula:=GOOGLEFINANCE(“CURRENCY:USDEUR”, “price”, DATE(2020,10,10), DATE(2020,10,20), “DAILY”)
  3. Press the Return key

You should now see two new columns automatically inserted starting from the cell in which you entered the formula.

Google Sheets Currency Conversion: The Easy Method (10)

The first column contains the date for each day between 10th Oct 2020 and 20th Oct 2020. The second column contains the closing google finance exchange rate for each day.

If you want to display weekly rates instead of daily rates, you can simply replace the interval parameter in the currency conversion function from DAILY to WEEKLY.

How to Use GOOGLEFINANCE to Fetch Currency Exchange Rates Over the Past Week

If you want to dynamically display exchange rates over the past, say one week depending on the day the sheet is opened, you can use the TODAY function, instead of the DATE.

Let us see an example where we want to dynamically display exchange rates of the previous 10 days, irrespective of which day the sheet is opened.

Follow these steps:

  1. Select a cell from where you want to start displaying the exchange rates.
  2. Type the formula:
    =GOOGLEFINANCE("CURRENCY:USDEUR", "price", TODAY()-10, TODAY(), "DAILY")
  3. Press the Return key

You should now see two new columns automatically inserted starting from the cell in which you entered the formula.

Google Sheets Currency Conversion: The Easy Method (11)

The first column contains the date for each day, from 10 days before to the current date. The second column contains the closing exchange rate for each day.

Here, the TODAY() function returns the current date on which the file is opened. So each time it is opened, this function will refresh and return a new value.

A Few Points to Remember About Google Sheet Currency Conversion

Here are a few important things you need to know to understand the GOOGLEFINANCE function:

  • When we say real-time exchange rates, you can expect a delay of up to 20 minutes.
  • For real-time rates, the function returns a single value. However, for historical rates, the function returns an array along with column headers.
  • If you do not provide any date parameters, GOOGLEFINANCE assumes that you only want real-time results. If you provide any date parameter, the request is considered as a request for historical data.

Google Sheets Currency Conversion Attribute Values

Here are some of the commonly used values for the attribute parameter of GOOGLEFINANCE:

For real-time data:

  • priceopen” – We want the price at the time of the market open.
  • high” – We want the current day’s high price.
  • low” – We want the current day’s low price.
  • volume” – We want the current day’s trading volume.
  • marketcap” – We want the market capitalization of the stock.

For historical data:

  • open” – We want the opening price for the specified date(s).
  • close” – We want the closing price for the specified date(s).
  • high” – We want the high price for the specified date(s).
  • low” – We want the low price for the specified date(s).
  • volume” – We want the volume for the specified date(s).
  • all” – We want all the above information.

There are a number of other attributes that you can use too. You can refer to the official documentation of Google Sheets to find out more.

Google Spreadsheet Currency Conversion FAQ

Here are a few of the most common questions I hear about the currency converter (and about the GOOGLEFINANCE function) in Google Sheets. If you have a question I haven’t already covered, please leave a comment below (or on my YouTube channel).

How do I use the GOOGLEFINANCE Function to track stocks?

I made a video that shows you how to make a stock tracking spreadsheet in under a minute on Google Sheets. Basically, you’ll just list the stocks, ETFs, or cryptocurrencies you want to track and use the GOOGLEFINANCE function to pull their values automatically. It’s my favorite way to track stock prices.

[adthrive-in-post-video-player video-id=”dSrP2phq” upload-date=”2023-10-16T16:52:02.000Z” name=”1-Minute Stock-Tracking Template” description=”Here’s how to make a stock trading template in Google Sheets. It takes about 50 seconds.” player-type=”default” override-embed=”default”]

Can Google Sheets Convert Currency?

Yes, You can use the GOOGLEFINACE function with the currency codes you wish to convert as the second argument like so:

=GOOGLEFINANCE("Currency:GBPAUD")

Why isn’t the GOOGLEFINANCE Function working?

The most common reason the GOOGLEFINANCE function isn’t returning a result is that you forgot to include quotation marks around your symbol. Once, I saw a #NAME error and I realized I just forgot to include the quotes. Adding the quotes solved the problem!

How Do I Convert From Pounds to Dollars in Google Sheets?

You use the GOOGLEFINANCE for currency conversions Google Sheets. You can get the current exchange rate for GBP and USD with the following formula:

=GOOGLEFINANCE("Currency:GBPUSD")

then multiply the two cells
Google Sheets Currency Conversion: The Easy Method (12)

If you want to, you can convert the currency directly by combing the GOOGLEFINANCE formula with the multiply formula or asterisk sign.

In our example, you can use the formula:

=MULTIPLY(A4,GOOGLEFINANCE("Currency:GBPAUD"))

or

=GOOGLEFINANCE("Currency:GBPUSD")* A4

Google Sheets Currency Conversion: The Easy Method (13)

How Do I Change Currency in Google Sheets from Pounds to Dollars?

You can also change the currency format that you are using gin Google Sheets.Here’s how to change currency in Google Sheets:

  1. Highlight the cells you wish to change
  2. Tap the Format > Number
Google Sheets Currency Conversion: The Easy Method (14)
  1. Click Custom currencies.

Google Sheets Currency Conversion: The Easy Method (15)

  1. Select the desired currency. In this case, we’ll choose dollars.
Google Sheets Currency Conversion: The Easy Method (16)
  1. Click Apply.

This works for Eurosor any other world currency and certain crypto coins.

How Do I Convert BTC to USD in Google Sheets?

BTC works the same as any other currency conversion using GOOGLEFINANCE in Google Sheets. You just have to use BTC the first currency argument. For example, if you just wanted the current rate, you could sue the following formula:

=GOOGLEFINANCE(“Currency:BTCUSD”)

Google Sheets Currency Conversion: The Easy Method (17)

Can I Pull Crypto Prices Into Google Sheets?

Yes, you can pull crypto prices into Google Sheets. Unfortunately, only the major cryptocurrencies are supported. For example, to pull the current exchange rate for Ethereum to USD, you could use the following formula:

=GOOGLEFINANCE(“Currency:ETHUSD”)

Is There Any Delay When GOOGLEFINANCE Fetches Values?

The Google Sheets exchange rate delay can be up to 20 minutes for the current exchange values.

Wrapping Up Google Finance Currency Conversion

In this tutorial, I showed you how to use the GOOGLEFINANCE function. This fetches real-time and historical exchange rates. I included screenshots with real-world examples.

I also showed you how to use the fetched rates for Google Sheets Currency Conversion. Has this been helpful? Please let me know if you have any other questions in the comments!

Other Google Sheets tutorials you may like:

    • REGEXMATCH Function in Google Sheets
    • How to Use IMPORTRANGE Function in Google Sheets
    • How to Convert Excel to Google Sheets
    • Convert Formulas to Values in Google Sheets
    • How to Auto-Refresh Google Sheets (Updates Every 1-Minute)
Google Sheets Currency Conversion: The Easy Method (2024)

FAQs

How to do currency conversion in Google Sheets? ›

In a cell, type "=GOOGLEFINANCE(" to start the function. Inside the parentheses, type "CURRENCY:" followed by the currency codes you want to convert from and to, separated by a space. For example, to convert from USD to EUR, you would type "CURRENCY:USDEUR". Close the parentheses and press Enter.

How to easily convert currency? ›

If you know the exchange rate, divide your current currency by the exchange rate. For example, suppose that the USD/EUR exchange rate is 0.631 and you'd like to convert 100 USD into EUR. To accomplish this, simply multiply the 100 by 0.631 and the result is the number of EUR that you will receive: 63.10 EUR.

How do you solve exchange rate questions? ›

How to work out exchange rates
  1. Write down the exchange rate and the other information given. Keep the same currencies in line.
  2. Highlight the rate.
  3. Decide whether to multiply or divide by the rate. ...
  4. Multiply or divide the given currency by the exchange rate.
  5. State your final answer with the correct currency symbol.

How do I fix currency in Google Sheets? ›

To apply a custom currency format to your spreadsheet:
  1. On your computer, open a spreadsheet in Google Sheets.
  2. Highlight the data you want to format.
  3. Click Format. Number.
  4. Click Custom currency.
  5. Search in the menu text box to select a format. You can also add your own custom currency format into the text box.
  6. Click Apply.

What is the formula for the exchange rate in spreadsheet? ›

To find the current rate, simply use the formula: =GOOGLEFINANCE(“CURRENCY:SourceCurrencyTargetCurrency”), replacing SourceCurrency and TargetCurrency with the relevant currency codes. For example, if you want to convert 100 USD to EUR, you'd enter =100 * GOOGLEFINANCE(“CURRENCY:USDEUR”) in a cell.

How do I convert text to currency in Google Sheets? ›

Changing Cell Formatting
  1. Select the cell or range of cells containing the text-formatted numbers.
  2. Click on "Format" in the top menu bar.
  3. Choose "Number" from the drop-down menu.
  4. Select the appropriate number format (e.g., Number, Currency, Percentage).
Jun 6, 2024

What is the formula for currency conversion? ›

If you don't know the exchange rate, you can use the following simple currency conversion calculation to find it: take your starting amount (original currency) and divide it by ending amount (new currency) = exchange rate.

What is the best currency conversion method? ›

Banks, credit unions, online bureaus, and currency converters provide convenient and often inexpensive currency exchange services. Once on foreign soil, the best means to convert currency is to use a foreign automated teller machine (ATM) or identify whether your bank has ATMs or banking affiliates nearby.

How to convert EUR to USD manually? ›

The other option is to do the calculation manually using a simple mathematical formula. However, in order to do this, you need to know the current exchange rate. At the time of writing, €1 EUR is worth $0.99 USD. Once you know that information, multiply the amount you have in USD by the current exchange rate.

Do you multiply or divide to convert currency? ›

To convert from the base currency, we multiply by the exchange rate. Just like multiplying to apply a commodity price.

How do you convert money from one currency to another? ›

How to Exchange Currency
  1. Contact a bank or credit union to make sure it has the currency or will accept foreign currency, and check what the fees are.
  2. Find exchange rates through your bank, credit union or websites such as xe.com.
  3. Check the bank's exchange rate to make sure it's fair.
  4. Arrange for pickup or delivery.

How do you solve for conversion rate? ›

Figuring out your conversion rate is easy. All you have to do is take the number of people who interact with a particular piece of content, like an email or a page on your website, and divide the number of conversions by that total.

How do I format currency in Google Sheets app? ›

To format numbers, dates, or currencies in a spreadsheet, follow these steps:
  1. On your Android phone or tablet, open a spreadsheet in the Google Sheets app.
  2. Tap a cell or range of cells.
  3. Tap Format. .
  4. Tap an option from the list. The format will be applied to your selected cells.

How do I show 1000 as 1k in Google Sheets? ›

Show Thousands as K (Comma Separator)
  1. Select the range B3:B10.
  2. Right-click to open the context menu.
  3. Click on Format Cells… in the menu. ...
  4. Navigate to the Number tab in the dialog box.
  5. Choose Custom from the Category list.
  6. Enter “0, “k”” to show numbers in thousands as K in the Type section of the Format Cells dialog box.
Aug 17, 2023

How do you convert currency to millions in Google Sheets? ›

To set up a custom number format in Google Sheets that displays numbers in millions, you can follow these steps:
  1. Step 1: Select Your Cells. ...
  2. Step 2: Open the Format Menu. ...
  3. Step 3: Go to Custom Number Format. ...
  4. Step 4: Enter Custom Format for Millions. ...
  5. Step 5: Apply the Custom Format. ...
  6. 6 Zapier Alternatives.
  7. 6 Zapier Alternatives.

How do I get the currency of a cell in Google Sheets? ›

How to Convert Currency in Google Sheets
  1. Select and an empty cell in your spreadsheet. ‍ Click an empty cell in your sheet, this will be the cell where the conversion populates. ...
  2. Enter the formula =GOOGLEFINANCE("CURRENCY:<Currency Code 1><Currency Code 2>") ‍ ...
  3. Press Enter to populate the results. ‍

Top Articles
Homemade Cat Treats Recipe - The Cookie Rookie®
65 Easy AIP Meals for Beginners: Stress-Free Dinner Recipes
排期 一亩三分地
Brown's Funeral Home Obituaries Lawrenceville Va
Craigslist Apartments For Rent Cheap
Sams Gurnee Gas Price
Zachary Zulock Linkedin
Www.myschedule.kp.org
Ascension St. Vincent's Lung Institute - Riverside
Understanding British Money: What's a Quid? A Shilling?
Xenia Canary Dragon Age Origins
Momokun Leaked Controversy - Champion Magazine - Online Magazine
Maine Coon Craigslist
How Nora Fatehi Became A Dancing Sensation In Bollywood 
‘An affront to the memories of British sailors’: the lies that sank Hollywood’s sub thriller U-571
Tyreek Hill admits some regrets but calls for officer who restrained him to be fired | CNN
Haverhill, MA Obituaries | Driscoll Funeral Home and Cremation Service
Rogers Breece Obituaries
Ems Isd Skyward Family Access
Elektrische Arbeit W (Kilowattstunden kWh Strompreis Berechnen Berechnung)
Omni Id Portal Waconia
Kellifans.com
Banned in NYC: Airbnb One Year Later
Four-Legged Friday: Meet Tuscaloosa's Adoptable All-Stars Cub & Pickle
Model Center Jasmin
Ice Dodo Unblocked 76
Is Slatt Offensive
Labcorp Locations Near Me
Storm Prediction Center Convective Outlook
Experience the Convenience of Po Box 790010 St Louis Mo
Fungal Symbiote Terraria
modelo julia - PLAYBOARD
Poker News Views Gossip
Abby's Caribbean Cafe
Joanna Gaines Reveals Who Bought the 'Fixer Upper' Lake House and Her Favorite Features of the Milestone Project
Tri-State Dog Racing Results
Navy Qrs Supervisor Answers
Trade Chart Dave Richard
Lincoln Financial Field Section 110
Free Stuff Craigslist Roanoke Va
Wi Dept Of Regulation & Licensing
Pick N Pull Near Me [Locator Map + Guide + FAQ]
Crystal Westbrooks Nipple
Ice Hockey Dboard
Über 60 Prozent Rabatt auf E-Bikes: Aldi reduziert sämtliche Pedelecs stark im Preis - nur noch für kurze Zeit
Wie blocke ich einen Bot aus Boardman/USA - sellerforum.de
Infinity Pool Showtimes Near Maya Cinemas Bakersfield
Dermpathdiagnostics Com Pay Invoice
How To Use Price Chopper Points At Quiktrip
Maria Butina Bikini
Busted Newspaper Zapata Tx
Latest Posts
Article information

Author: Neely Ledner

Last Updated:

Views: 5433

Rating: 4.1 / 5 (62 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Neely Ledner

Birthday: 1998-06-09

Address: 443 Barrows Terrace, New Jodyberg, CO 57462-5329

Phone: +2433516856029

Job: Central Legal Facilitator

Hobby: Backpacking, Jogging, Magic, Driving, Macrame, Embroidery, Foraging

Introduction: My name is Neely Ledner, I am a bright, determined, beautiful, adventurous, adventurous, spotless, calm person who loves writing and wants to share my knowledge and understanding with you.