Forum Discussion
hershel13
Jul 09, 2020Copper Contributor
count how many time a value is in a column
I have list of names and a number near each name in a other column i want to know how many ppl i have from each number
something like this
1 70 ppl
2 12 ppl
3 15 ppl
any idea ?
5 Replies
- hershel13Copper Contributor
name Rate name a 1 name b 1 name c 1 name d 1 name e 2 name f 2 I want to know how many ppl I have rate 1 how many 2 total numbers
Rate Total 1 4 2 2
=- SergeiBaklanDiamond Contributor
As variant for
formula is
=CHOOSE({1,2},UNIQUE($C$3:$C$8),COUNTIF($C$3:$C$8,UNIQUE($C$3:$C$8)))
- SergeiBaklanDiamond Contributor
Please clarify you would like to count or to sum. For example, name ABC has two records
ABC 70 ppl
ABC 20 ppl
result shall be 2 or 90 ppl?
- mtarlerSilver Contributor
hershel13 lets say you have names in A and categories in B and you want to count how many people are in each category you should be able to add col C with each category listed and in col D use:
=COUNTIF($B:$B,$C1)if you have a title in row 1 you may start in cell D2 and change that to $C2 before filling down