DELETE ALL EXCEPT LETTER OF A WORD

  • Thread starter Thread starter jerrybee57
  • Start date Start date
J

jerrybee57

How can I delete all except the first letter of words in a column?
 
a macro something like

sub firstletteronly()
for each c in range("a2:a22")
c.value=left(c,1)
next c
end sub
 
In a helper column enter =LEFT(A1) and copy down.

Select the helper column and copy it.

Select the original column and Edit>Paste Special>Values>OK>Esc

Delete helper column.


Gord Dibben MS Excel MVP
 

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