Google Sheets – Change Number Stored to Plain Text Format

formattinggoogle sheets

I have numbers stored in a sheet as (xxx) xxx-xxxx. I want to remove all formatting and make it just xxxxxxxxxx.

How can I accomplish this?

Best Answer

Please try:

=regexreplace(A1,"\D","")

REGEXREPLACE