Insert text with connection to other cells

Dani_LobP

Board Regular
Joined
Aug 16, 2019
Messages
134
Office Version
  1. 365
Platform
  1. Windows
Hello,

I have a table with some columns, and I would like to make some text below it connected to some cells.

Example:

NameNumberStreetAge
Bob
2​
Close
24​
Rob
3​
Far
64​
Robert
5​
Near
32​
Bobert
7​
Here
24​

Idea is to place below something like this:
Range("A6").value="Hi"&" "&Range...
in order to make the sentence "Hi Bob, we sent 2 items requested to Close."

The way i try doing it works, but I cant seem to figure out how to fill down so it uses next row of data without having to change manually all cells in formula.

Hope it makes sense.

Thanks in advance.

Regards,
Dani
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Upvote 0
Solution
Hey Dani_LobP

Check out this Solution!


Cell Formulas
RangeFormula
E1:E4E1=CONCATENATE("Hi ", A1,", we sent ",B1," items requested to ",C1, ".")



Feel to ask if any confusion.
Oh yes, great! thanks..

Already forgot about Concatenate feature... was obsessed to try make it fancy with VBA.. :D thanks again :)
 
Upvote 0

Forum statistics

Threads
1,226,739
Messages
6,192,739
Members
453,754
Latest member
milestogo

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