View Single Post
  #2   Report Post  
David Billigmeier
 
Posts: n/a
Default

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

--
Regards,
Dave


"Shane" wrote:

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?