add data without deleting information in cell

  • Thread starter Thread starter Hobher
  • Start date Start date
H

Hobher

I have a column with information already in it and I want to add "_2007" to
the information already in the cells without deleting that information. Is
there a fast way to do that? Each cell has different information in it so I
don't think I can do a find and replace.
 
sub addatend()
for each c in range("a2:a22")
c.value=c.value & "_2007"
next c
end sub
 

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