How to remove (delete) the first Character in all of the columns

D

dhcruz

Hi,

How do you remove the first character from all of the columns in an
excel spreadsheet ?
In the column below - I would want to remove all of the leading 1's.
There are over 600 rows in the column.

Thanks !!

ex:

1dan
1bill
1dill
1sill
1dan
1bill
1dill
1sill
 
G

Guest

=RIGHT(A1,LEN(A1)-1)
copy down as far as needed

or

Select your range
Go to Edit > Replace
Find What: 1
Replace With: (leave it blank)
Replace All
 
R

RichardSchollar

An alternative would be to use Data>TextToColumns, check Fixed Width
and set a column separator on the second character. You'd then need to
delete the first column, leaving the contents without the first
character.

Richard
 
P

Pete_UK

Another way is to highlight the offending cells and then use
Edit/Replace (CTRL-H) to find 1 and replace it with nothing.

Hope this helps.

Pete
 
D

David Biddulph

Rather than importing both columns and deleting the first, it's easier to
tell it "Do not import column (skip)" for the first column.
 
R

RichardSchollar

Good point David :)

Richard


David said:
Rather than importing both columns and deleting the first, it's easier to
tell it "Do not import column (skip)" for the first column.
 

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