View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Remove hyphens from SSN

=substitute(a1,"-","")
will return text

=--substitute(a1,"-","")
will return numbers. You could use format|cells|custom and give it a custom
format of 000000000.

Or select your cells
edit|replace
what: - (hyphen)
with: (leave blank)
replace all

And use that same custom format.

NH wrote:

Please help...

Is there a way to remove hyphen from SSN without stripping out the leading
zeros?

I used the replace function under the Edit menu -- Find "-" and Replace with
"". It worked on some SSNs but didn't on the SSNs with leading zeros.

001-23-4567 ==1234567 (expected result = 001234567)


--

Dave Peterson