Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
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? |
#2
![]() |
|||
|
|||
![]()
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? |
#3
![]() |
|||
|
|||
![]()
I would use a for/each macro
for each c in selection c.value=c & "SMPT:" next c -- Don Guillett SalesAid Software "Shane" wrote in message ... 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? |
#4
![]() |
|||
|
|||
![]()
Assuming your list is in column A, in B1 put this formula and copy
down.......... =A1&"SMTP:" Vaya con Dios, Chuck, CABGx3 "Shane" wrote in message ... 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? |
#5
![]() |
|||
|
|||
![]()
if they arent in a column, where would you add the formaula to append ?
"CLR" wrote: Assuming your list is in column A, in B1 put this formula and copy down.......... =A1&"SMTP:" Vaya con Dios, Chuck, CABGx3 "Shane" wrote in message ... 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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text Alignment in Excel Cells | Excel Discussion (Misc queries) | |||
Adding a lot of text to MS Excel cells | Excel Discussion (Misc queries) | |||
Excel - counting cells containing a text string | Excel Worksheet Functions | |||
In Excel, using line wrap with text, some cells will appear as ##. | Excel Discussion (Misc queries) | |||
How do I "Wrap Text" & "Autofit" within Merged Cells in Excel? | Excel Worksheet Functions |