How can you append text in multiple cells in excel?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a 1 page workbook of email addresses. I would like to apend SMTP: to
each address in a row. How can I do this without going to each cell and
pasting?
 
Use the CONCATENATE() function... for example if you had "Joe" in A1 and
"Smith" in A2, the formula:

=CONCATENATE(A1," ",A2) would yield "Joe Smith"

You can also do this with the & symbol like so: =A1&" "&A2
 
I would use a for/each macro
for each c in selection
c.value=c & "SMPT:"
next c
 
Assuming your list is in column A, in B1 put this formula and copy
down..........

=A1&"SMTP:"

Vaya con Dios,
Chuck, CABGx3
 
Back
Top