Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to add the word "Cisco" at the end of a site name, but I have 4000
cells that need it added. Is there a formula that will allow me to add the word in?? Ex: 1234 Main St needs to be 1234 Main St (Cisco) 1549 Rough St needs to be 1549 Rough St (Cisco) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
& is the concatenate character so
=A1 & " Cisco" should work... -- HTH... Jim Thomlinson "future spreadsheet master" wrote: I need to add the word "Cisco" at the end of a site name, but I have 4000 cells that need it added. Is there a formula that will allow me to add the word in?? Ex: 1234 Main St needs to be 1234 Main St (Cisco) 1549 Rough St needs to be 1549 Rough St (Cisco) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming those addresses are in column A, use this in a helper column:
=IF(A1="","",TRIM(A1&" (Cisco)")) Then you can copy it down that column as far as you need to. If you fix the values using <copy | Edit | Paste Special | Values | OK then <Esc, then you will be able to copy/paste the values over the original ones in column A, and then delete the helper column. Hope this helps. Pete On Aug 20, 4:09*pm, future spreadsheet master wrote: I need to add the word "Cisco" at the end of a site name, but I have 4000 cells that need it added. Is there a formula that will allow me to add the word in?? Ex: 1234 Main St *needs to be 1234 Main St (Cisco) 1549 Rough St needs to be 1549 Rough St (Cisco) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
adding * to text to column | Excel Discussion (Misc queries) | |||
Column Chart - Adding text in the column in Excel 2007 | Charts and Charting in Excel | |||
Display cells(text) in one column based on cells which are present inother column | Excel Discussion (Misc queries) | |||
Adding text in a single column | Excel Worksheet Functions | |||
IF cells(row,column) contain "this word" ??? Then return text | New Users to Excel |