I am importing currency from Google finance to Google spreadsheets (latest version). The number that is imported is rounded both in terms of what is displayed and the underlying number. Is there a way to get the actual underlying currency number to all necessary decimal places?
Asked
Active
Viewed 1,797 times
3 Answers
0
Look at your menu bar and select:
Format > Number > More Formats > Custom Number Format

shinjw
- 3,329
- 3
- 21
- 42
0
I used the external lookup - =ImportHTML("http://www.xe.com","table", 1)
in a unused part of the spreadsheet and then sourced the appropriate rate from the table contents. Will probably work with other currencies too - look at xe.com Updates every minute which is fine for my purposes.

David Howlett
- 1
- 1
0
=round((googlefinance("asx:"&B12,"marketcap")/googlefinance("asx:"&B12,"shares")),4)
Where:
- ASX (Australian Stock eXchange) can be replaced for TSE, etc or removed for NASDAQ
- B12 is the Ticker.

ross
- 2,684
- 2
- 13
- 22

Charbzilla
- 71
- 1
- 2
-
please add the appropriate code formatting so other people can more easily read it – Tarick Welling Jul 02 '19 at 09:46