This function:
GOOGLEFINANCE(("CURRENCY:EURAUD"))
works well in Google Sheets, I have searched the web up and down for some documentation regarding this function and how it is used, the closest I've got was this
http://www.google.com/finance?q=EURAUD
Does anyone know how to use this one? or where to find documentation regarding this function?
Calculate the currency rate between two currenciesSelect a cell which you want to place the result, type this formula =GOOGLEFINANCE("CURRENCY:"&$A$4&B4) (in the formula, $A$4&B4 means to calculate the rate while converting USD to EUR). Then press Enter key, the result displays.
Syntax. GOOGLEFINANCE(ticker, [attribute], [start_date], [end_date|num_days], [interval]) ticker - The ticker symbol for the security to consider. It's mandatory to use both the exchange symbol and ticker symbol for accurate results and to avoid discrepancies. For example, use “NASDAQ:GOOG” instead of “GOOG.”
The specific instructions for what you are looking for are in here: https://support.google.com/docs/answer/3093281
Remember your Google Spreadsheets Formulas might use semicolon (;) instead of comma (,) depending on Regional Settings.
Once made the replacement on some examples would look like this:
=GoogleFinance("CURRENCY:USDEUR") =INDEX(GoogleFinance("USDEUR","price",today()-30,TODAY()),2,2) =SPARKLINE(GoogleFinance("USDEUR","price",today()-30,today()))
Those 3 cells would result in something like this:
Exchange rate from Euro to NOK on the first of January 2016:
=INDEX(GOOGLEFINANCE("CURRENCY:EURNOK"; "close"; DATE(2016;1;1)); 2; 2)
The INDEX()
function is used because GOOGLEFINANCE()
function actually prints out in 4 separate cells (2x2) when you call it with these arguments, with it the result will only be one cell.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With