在Excel中计算不同值 - 频率函数
在Excel中计算不同值 - 频率函数 是的,我读过 在 Excel 中计算不同值 - 频率函数
我尝试计算具有不同数字的列列
包含(搜索)
1 3 7 9 5 1 3 9 4
查找的结果;
C1 C2
1 = 2
2 = 0
3 = 2
4 = 1
etc
Counting distinct values in excel - frequency function
yes I have read
Counting distinct values in excel - frequency function
I am try to count a column with different numbers
column contains (search)
1 3 7 9 5 1 3 9 4
result looking for;
C1 C2
1 = 2
2 = 0
3 = 2
4 = 1
etc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 COUNTIF 来计算符合条件的元素数量。
假设 A 列中有数字,例如从 A1 到 A10:
等等...
在工作表上的某个位置(例如 B 列)输入您感兴趣的值:
等等...
然后在 C1 中输入
=COUNTIF($A$1:$A$10, B1)
这应该计算 A1:A10 中等于 B1(即 0)的值的数量。
You can use COUNTIF to count the number of elements that match a condition.
Suppose you have your numbers in column A, say from A1 to A10:
etc...
Type in somewhere on your sheet, say in column B, the values you are interested in:
etc...
and in C1, type in
=COUNTIF($A$1:$A$10, B1)
This should count the number of values equal to B1 (i.e. 0), in A1:A10.
在 A 列中输入数字,在 B 列中输入序列
选择两列并创建一个数据透视表,将 A 列放入行中。选择 {COUNT} 作为函数,您就完成了。
Enter your numbers in column A and a sequence in column B
Select both columns and create a pivot table putting col A in rows. Select {COUNT} as function and you are done.
不完全是你所问的,但我使用宏来生成频率表。我喜欢它。原始代码由 MWE 发布于 http://www.vbaexpress.com/kb /getarticle.php?kb_id=406 我(希望)对其进行了一些改进。留下了一些冗余代码,这样我就能得到更多回复:p
Not exactly what you are asking but i use a macro to generate frequency tables. I like it. Original code was posted by MWE at http://www.vbaexpress.com/kb/getarticle.php?kb_id=406 and i have (hopefully) improved it a bit. Have left in a little bit of redundant code so i get more replies :p