remove last character in a series of different length part #'s

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

Guest

i have a series of part numbers in a column in xl that vary in length but
all end in "v'. I want to remove just the "v". I tried text to coulmns and
all the functions i know.
 
If the v only shows up in the last character, maybe just
select your range
edit|replace
what: v
with: leave blank
replace all

If you don't want to do that, maybe a helper column of cells:

=left(a1,len(a1)-1)
drag down
copy|paste special|values
and delete the original column
 
worked like a chram, thx,leo

Dave Peterson said:
If the v only shows up in the last character, maybe just
select your range
edit|replace
what: v
with: leave blank
replace all

If you don't want to do that, maybe a helper column of cells:

=left(a1,len(a1)-1)
drag down
copy|paste special|values
and delete the original 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

Back
Top