To merge data from a few cells and separate it by bullets

nishant_kotian

New Member
Joined
Sep 25, 2011
Messages
6
Hi all,

I have a few text data typed in from lets say cell A5:A15.

Is there a macros that we can have which when run can automatically merge the data from A5:A15 to lets say C16 with bullets separating it.

So in short all the text from A5:A15 to be copied under 1 single cell but separated by bullets under C16.

Thanks in advance for all your help and efforts.

Really appreciate all of it.

Nishant Kotian
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
To add bullet points and carriage returns use this formula:

Code:
=(CHAR(149)&A1&CHAR(10)&CHAR(149)&A2&CHAR(10)&CHAR(149)&A3)


Copy and paste this to the formula, changing the cell reference at the end each time:

Code:
&CHAR(10)&CHAR(149)&A4

When the formula is complete..

Right click on the cell with the formula, Click on Format Cells - Alignment - tick the Wrap Text tick box.
 
Upvote 0
To add bullet points and carriage returns use this formula:

Code:
=(CHAR(149)&A1&CHAR(10)&CHAR(149)&A2&CHAR(10)&CHAR(149)&A3)


Copy and paste this to the formula, changing the cell reference at the end each time:

Code:
&CHAR(10)&CHAR(149)&A4

When the formula is complete..

Right click on the cell with the formula, Click on Format Cells - Alignment - tick the Wrap Text tick box.
You are a star buddy!!!

Thanks a ton!!
 
Upvote 0

Forum statistics

Threads
1,224,585
Messages
6,179,703
Members
452,938
Latest member
babeneker

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