How can you append text in multiple cells in excel?

S

Shane

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?
 
D

David Billigmeier

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
 
D

Don Guillett

I would use a for/each macro
for each c in selection
c.value=c & "SMPT:"
next c
 
C

CLR

Assuming your list is in column A, in B1 put this formula and copy
down..........

=A1&"SMTP:"

Vaya con Dios,
Chuck, CABGx3
 

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