如何定义使用ID的序列?

时间:2015-08-02 14:21:06

标签: excel sequence countif

我有ProductID:

ProductID
12
85
14
14
14
17
65
65

我需要创建一个新列,我可以计算出我有多少次相同的ProductID。我的意思是:

ProductID   Count
12           1
85           1
14           1
14           2
14           3
17           1
65           1
65           2

我目前的公式是= IF((A3=A2),F2+1,1),但它不起作用。

2 个答案:

答案 0 :(得分:0)

B2 中输入:

cd I:/folder/files/

# for python 2.x :
python -m SimpleHTTPServer 80

# for python 3.x :
python -m http.server 80

并复制

enter image description here

答案 1 :(得分:0)

如果您希望每个条目的计数相同,请使用此公式。 (即数据为14将为3,因为它在数据集中存在三次)

  

= COUNTIF($ A $ 2:A9,A2)

附上输出供您参考。

enter image description here