Reputation: 1306
Okay I have a cell with Russian Roubles and want to convert them into US Dollars. What is the formula? I tried to find some keywords with =something
(currency,finance,convert,dollar,double,ruble and much more) but found nothing.
Upvotes: 1
Views: 1943
Reputation: 2937
There are certain function available in Google Spreadsheets to interact with other Google services such as Finance. To get the realtime exchange rate between currencies and set up conversion you could follow these steps:
GoogleFinance("CURRENCY:EURUSD")
. The format is GoogleFinance("CURRENCY:<from-currency><to-currency>")
=C4*GoogleFinance("CURRENCY:EURUSD")
Upvotes: 2