FormulaCraft

How to remove a currency symbol from a number in Excel and Google Sheets

Topic:Text manipulation
Excel & Google Sheets
=VALUE(SUBSTITUTE(TRIM(A2),"$",""))

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Identify the currency symbol in your data (e.g., $, £, €, ¥).
  2. 2Use SUBSTITUTE(A2,"$","") to remove the dollar sign — replace "$" with your actual symbol.
  3. 3Wrap in TRIM() to remove any spaces that may remain: TRIM(SUBSTITUTE(A2,"$","")).
  4. 4Wrap in VALUE() to convert the resulting text string to a number: =VALUE(TRIM(SUBSTITUTE(A2,"$",""))).
  5. 5The result can now be used in calculations.

Tips

Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.

Frequently asked

What if the currency symbol is at the end of the string?

SUBSTITUTE removes the symbol regardless of its position (start, end, or middle), so the formula works the same way.

Can I remove multiple different currency symbols at once?

Yes — nest SUBSTITUTE calls: =VALUE(TRIM(SUBSTITUTE(SUBSTITUTE(A2,"$",""),"£",""))) removes both $ and £.

More on Text manipulation

See all →

Formulas used

Related tasks

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: