2

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

Abela
  • 1,225
  • 3
  • 19
  • 42

2 Answers2

6

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),"$","")

Chris Hick
  • 3,004
  • 1
  • 13
  • 15
  • That worked Chris. Thanks a bunch. So, "left" converts to text. Good to know. And, "substitute" is basically a "str_replace" eh - very sweet! – Abela Mar 11 '16 at 22:15
2

Highlight the cells you want to change. Go to Format --> Number --> More Formats --> Custom number format. Highlight the "$" and delete it (delete the quotes and dollar sign both). Click apply. I have attached before and after pictures.

Before After

JenVander
  • 325
  • 2
  • 11