A Ann Jun 5, 2009 #1 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?
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 Jun 5, 2009 #2 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
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 Jun 5, 2009 #3 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 Click to expand...
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 Click to expand...
D Don Guillett Jun 5, 2009 #4 If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm -- Don Guillett Microsoft MVP Excel SalesAid Software (e-mail address removed) Ann said: Where do I type in Sub addtext() Click to expand...
If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm -- Don Guillett Microsoft MVP Excel SalesAid Software (e-mail address removed) Ann said: Where do I type in Sub addtext() Click to expand...