I need a formula to eneter a word in a sentence from another column

watsonjp

New Member
Joined
Aug 5, 2017
Messages
1
Good Day,

I have in column "C" the following word "Wimpey Chairs" and in column "DR" I have the following sentence "
Shop at Office Stock, carrying a huge selection of quality furniture and office supplies."

So I am looking for a formula where I can enter the words in column "C" in the sentence in column "DR" just after the first word that will be Shop.

So when completed the sentence will read "Shop Wimpey Chairs at Office Stock, carrying a huge selection of quality furniture and office supplies."

I want to drag this formula down so that it can take every time the word in a row in the specific column and add it automatically to the sentence in a specific position. The sentence will always stay the same but as we move down in the rows the word will change every time.

<tbody>
</tbody>
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Perhaps like this...


=LEFT(DR2, FIND(" ", DR2))&C2&MID(DR2, FIND(" ", DR2), 255)
 
Upvote 0
How about
=REPLACE(DR1,5,," "&C1)
 
Upvote 0
Welcome to the MrExcel board!

Is this what you want?
Formula copied down.


Excel 2016 (Windows) 32 bit
CDQDRDS
2Wimpey ChairsShop at Office Stock, carrying a huge selection of quality furniture and office supplies.Shop Wimpey Chairs at Office Stock, carrying a huge selection of quality furniture and office supplies.
3TableShop Table at Office Stock, carrying a huge selection of quality furniture and office supplies.
4Something elseShop Something else at Office Stock, carrying a huge selection of quality furniture and office supplies.
Insert word
Cell Formulas
RangeFormula
DS2=SUBSTITUTE(DR$2," "," "&C2&" ",1)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top