Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am creating a workbook with multiple pages. I would like to type a company
name on the first page and have it placed in the middle of sentences through out the work book. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way would be to concatenate if Company Name is in A1.
=CONCATENATE("The best company is ",Sheet1!A1," based in San Jose.") The best company is Smith Printing based in San Jose. "adam" wrote: I am creating a workbook with multiple pages. I would like to type a company name on the first page and have it placed in the middle of sentences through out the work book. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The best way is to use the & to connect strings
="My Company Name is " & Sheet1!A1 ="Company " & Sheet1!A1 & "owes " & Sheet1!B2 & " Dollars" "adam" wrote: I am creating a workbook with multiple pages. I would like to type a company name on the first page and have it placed in the middle of sentences through out the work book. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming "pages" are worksheets, you would need linking formulas in all
cells in which you would want the company name inserted. ="This is coming to you from " & Sheet1!A1 & " which is a great company" To insert a text string into existing text strings would require VBA Gord Dibben MS Excel MVP On Mon, 8 Dec 2008 12:06:12 -0800, adam wrote: I am creating a workbook with multiple pages. I would like to type a company name on the first page and have it placed in the middle of sentences through out the work book. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto replace between Excel and Word | Excel Discussion (Misc queries) | |||
How do I replace the last entire word in text cells? | Excel Discussion (Misc queries) | |||
How to replace a word with a word from other column? | Excel Worksheet Functions | |||
Word Automation - Find/Replace | Excel Discussion (Misc queries) | |||
Word: replace ... ... with space | Excel Discussion (Misc queries) |