Complex Bullet POint Addition

dlafko

New Member
Joined
Dec 19, 2014
Messages
43
I know how to add bullet points generally to and excel cell. The problem I am having is I already have multiple lines of text in one cell in a giant spreadsheet someone else made.
We want to use bullet point to show where the new line of text is in each cell

And I have not been able to figure out how to do it as amaster group. I know I could go in to each cell put the cursor at the start ofthe first line and do the ALT 7 then manually move to the next line and do thesame thing but I have over 1600 cells that need these adjustments.



ASo you can see in the first examples I manually added 2bullets to the corrections officer 1 and 2 but I don’t want to have to do thatmanually thousands of times. The other 2 don’t have bullets yet.






47230Corrections Officer 347230Corrections11/21/201812/12/2018xxxx• Corrections Officer 1
• Corrections Officer 2
1212Higher than Unsatisfactory
22060Education Administration Associate93153Education11/26/201812/14/2018xxxxxAdministrative Assistant 2
Administrative Officer 1
1224Satisfactory or higher
47230Corrections Officer 331248Corrections11/27/201812/12/2018xxxxCorrections Officer 1
Corrections Officer 2
1212Higher than Unsatisfactory
<colgroup><col width="77" style="width: 58pt; mso-width-source: userset; mso-width-alt: 2816;"> <col width="247" style="width: 185pt; mso-width-source: userset; mso-width-alt: 9033;"> <col width="117" style="width: 88pt; mso-width-source: userset; mso-width-alt: 4278;"> <col width="133" style="width: 100pt; mso-width-source: userset; mso-width-alt: 4864;"> <col width="111" style="width: 83pt; mso-width-source: userset; mso-width-alt: 4059;"> <col width="113" style="width: 85pt; mso-width-source: userset; mso-width-alt: 4132;"> <col width="45" style="width: 34pt; mso-width-source: userset; mso-width-alt: 1645;"> <col width="70" style="width: 53pt; mso-width-source: userset; mso-width-alt: 2560;"> <col width="53" style="width: 40pt; mso-width-source: userset; mso-width-alt: 1938;"> <col width="88" style="width: 66pt; mso-width-source: userset; mso-width-alt: 3218;"> <col width="64" style="width: 48pt; mso-width-source: userset; mso-width-alt: 2340;"> <col width="255" style="width: 191pt; mso-width-source: userset; mso-width-alt: 9325;"> <col width="120" style="width: 90pt; mso-width-source: userset; mso-width-alt: 4388;"> <col width="124" style="width: 93pt; mso-width-source: userset; mso-width-alt: 4534;"> <col width="113" style="width: 85pt; mso-width-source: userset; mso-width-alt: 4132;"> <col width="117" style="width: 88pt; mso-width-source: userset; mso-width-alt: 4278;"> <tbody> </tbody>





Any help would be great.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Are you saying that the cell with Corrections Officer 1 and Corrections Officer 2 is actually one cell containing a carriage return after the "1"? And that you want to put that little round bullet-point symbol in front of each of the items in that cell?

If that is so, do this.


Create a formula in a column out to the right, say ColP (as I assume your Corrections Officer column is ColL with data in L3):

Code:
[FONT=Verdana]=UNICHAR(8226)&LEFT(L3,FIND(UNICHAR(10),L3)-1)&UNICHAR(10)&UNICHAR(8226)&MID(L3,FIND(UNICHAR(10),L3)+1,100)[/FONT]

Apply Wrap Text to your new column (ColP). You can then either keep the new column and use it or copy its contents and paste-as-values back to ColL.


UNICHAR(8226) is the Unicode character that delivers a bullet-point, and UNICHAR(10) is a soft carriage-return. The formula finds that and substitutes bullet-points. This will only work for two items per cell. If you have several Items per cell, we can try PowerQuery or you can try VBA.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,199
Members
449,072
Latest member
DW Draft

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