Count percentage of specific text in a range of cells

K

kruggie2000

I am trying to figure out how get the percentage of times a specific text
occurs in a spreadsheet.
 
S

Sheeloo

You can get the number of times it occurs by using COUNTIF function

For example to count how many times Test occurs in Col C use
=COUNTIF(C:C,"Test")

You can then calculate the percentage as you want.
 
Top