extracting numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a row of numbers like 444.334.2342 and I want to condense them down to
4443442342 to get rid of the "."

Any suggestions?

Thanks in advance.
 
Hi Trevor,
If all numbers are formatted as xxx.xxx.xxxx, format the data as text, and
then you can use this formula:
=LEFT(A2,3)&MID(A2,5,3)&RIGHT(A2,4),
Then just copy and replace values.

The advantage of using a formula like this, instead of just using a find and
replace, is that it will recognize leading zeroes, and keep them for you.
HTH
 
How about selecting your range and
edit|replace
what: . (dot)
with: (leave blank)

You'll end up with numbers and may have to format them to show any leading 0's.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top