Insert the same word at the start of a column of cells

A

Ann

I have a column of descriptions and want to insert the word Muratec in front
of each description. Does anyone know how to do this?
 
D

Don Guillett

try

Sub addtext()
For Each c In Range("e2"). _
Resize(Cells(Rows.Count, "e").End(xlUp).Row - 1)
c.Value = "Muratec " & c
Next c
End Sub
 
A

Ann

Where do I type in Sub addtext()
--
Thanks,
Ann


Don Guillett said:
try

Sub addtext()
For Each c In Range("e2"). _
Resize(Cells(Rows.Count, "e").End(xlUp).Row - 1)
c.Value = "Muratec " & c
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

Top