removing first character in cell

  • Thread starter Thread starter Alexey
  • Start date Start date
A

Alexey

Hi I have acolumn and i need to remove the first charatcter of each cell in
this column. is there an easy way to to do this please?

A
 
Thanks
A

Don Guillett said:
for each c in range("a2:a22")
c.value=right(c,len(c)-1)
next c

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(e-mail address removed)
 

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