GoogleFinance - Remove USD Symbol

Abela picture Abela · Mar 11, 2016 · Viewed 7.6k times · Source

Using google spreadsheets to display currency data, with USD as primary field for formula: =LEFT(V10*GoogleFinance("currency:USDEUR"),5)

I cannot figure out how to remove the the USD Symbol ($) from not show up for the additional currencies. It makes no sense to have the **$**xxx being displayed on non-USD data.

I have tried doing Format -> Numbers but none of those options resolve this issue.

enter image description here

Answer

Chris Hick picture Chris Hick · Mar 11, 2016

The number formats are not working since the LEFT function is converting the value to text. Does this formula work instead:

=SUBSTITUTE(LEFT(V10*GoogleFinance("currency:USDEUR"),5),"$","")