Removing spaces from cells

G

Guest

I have a very large spreadsheet--like 35,000 items long including 12-digit
UPC. The problem alot of them have spaces in between the numbers. We need
to import without any spaces.

Anything built into excel to do this easily--or is it better to just buy the
add-in.
 
G

Guest

A simple Find/Replace should do the trick.

Select your range of UPC numbers
From the Edit Menu, choose "Replace"
In the Find What field, type a space
In the Replace With field, leave it blank
Click on Replace All

HTH,
Elkar
 
R

Ron Rosenfeld

I have a very large spreadsheet--like 35,000 items long including 12-digit
UPC. The problem alot of them have spaces in between the numbers. We need
to import without any spaces.

Anything built into excel to do this easily--or is it better to just buy the
add-in.

Worksheet function:

=SUBSTITUTE(A1," ","")

will give you the result in a different cell.

Or you can use the Edit/Replace <space> for <nothing>


--ron
 
G

Gaurav

assuming your code in in A1. in B1 write =CLEAN(A1) and drag it down. you
can then copy and paste special|values.

Does that work?
 
P

Peo Sjoblom

CLEAN will not remove spaces nor invisible html characters


--


Regards,


Peo Sjoblom
 

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

Top