How many times does each value appear in a column?

前端 未结 3 1123
野趣味
野趣味 2020-12-18 20:24

I have a column with time data like this:

17:27:31
17:27:32
17:27:32
17:27:33
17:27:33
17:27:34
17:27:34
17:27:34
17:27:35
17:27:36

I want

3条回答
  •  情话喂你
    2020-12-18 20:41

    You can use CountIf. Put the following code in B1 and drag down the whole column

    =COUNTIF(A:A,A1)
    

    It will look like this:

    enter image description here

提交回复
热议问题