Counting Bullets in multiple cells

ajackowski

New Member
Joined
Apr 23, 2015
Messages
5
Counting Bullets in multiple cells

Good day
I’m creating a product comparison checklist for a product I’m looking to purchase. Is there are way to count/tally the bullets at the bottom of the checklist to see which product scored the highest? I have about 85 requirements the product has to be graded against.

Thanks,
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
By bullets, do you mean the bullet character · ?

=COUNTIF(A50:A100,"·*")
 
Upvote 0
Thank you for the quick reply.
I used =COUNTIF(C13:C86,CHAR(108)) so I could get a Wingdings bullet AKA lower case "l" in regular fonts to show up in the cell.
 
Upvote 0
Thank you for the quick reply.
I used =COUNTIF(C13:C86,CHAR(108)) so I could get a Wingdings bullet AKA lower case "l" in regular fonts to show up in the cell.
You forgot the asterisk...

=COUNTIF(C13:C86,CHAR(108)&"*")

Note, since the character is a lower case L, you should be able to use that directly...

=COUNTIF(C13:C86,"l*")

However, if you have any cells that start with an upper or lower case "L", those will be counted as well (for either of the above formulas). Do all your cells start with a bullet? Do any of your cells have multiple bullets in them (the above formulas will only count one bullet per cell)?
 
Upvote 0
Hi

Also, just a remark: why are you using the wingdings font?

You could use the unicode bullet, you would not have to change fonts and it would not be a problem to count, since there would be no confusion between the bullet and an "l" character.
 
Upvote 0
I have crude excel skills, on a time crunch and using the skills that I know :). Only one bullet per cell is required. But thanks for the tips and speedy replies.

cheers
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
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