由买买提看人间百态

topics

全部话题 - 话题: countifs
1 (共1页)
z**********i
发帖数: 12276
1
来自主题: Statistics版 - excel function 求助_有包子
=(COUNTIFS($E$23:$E$172,">0",$E$23:$E$172,"<9",Residents!$E$9:$E$158,"*")/$F
$13)
如何把COUNTIFS变成COUNTIF, SUMIF 或者SUMPRODUCT, 因为2003版本没有COUNTIFS.
多谢!!
N******n
发帖数: 3003
2
比如第B列是true or false, 但是这个true 是根据第A列的内容算出来的,所以我统计
出现true的次数: countif(B:B,“true”)就不行,如果把第B列的内容copy放到
text,然后再拷贝回去,这个时候的true就是一个word,与第A列没有任何关系,用
countif就好了。 有没有其他的简单的方法。
谢谢
S*********g
发帖数: 5298
3
只有一个判断条件用countif
如果有多个判断条件,譬如说要判断某天的pending有几个,用countifs
或者用pivot table也能做
s****d
发帖数: 2315
4
=COUNTIF(B2:S2,"W")*2+COUNTIF(B2:S2,"L")*1
z**********8
发帖数: 2049
5
来自主题: Database版 - advanced skills in excel?
HLOOKUP
VLOOKUP
TRANSPOSE
INDIRECT
MATCH
INDEX
CHOOSE
COUNTIF
COUNTIFS
COUNTBLANK
AVERAGEIF
AVERAGEIFS
FREQUENCY
w**g
发帖数: 8
6
有如下两列数据:
3 2
2 4
9 6
1 8
6 10
第一列为原始数据, 第二为bin。Excel Analysis tools中Histogram可以用来计算第
一列数据的频率(以第二列为bin). 但是Histogram 不能自动执行。
我的问题是:怎样在第三列用Excel function计算出相应bin的频率。我用如下
function但其结果与Histogram所得结果不一样
A3=(countif($A$1:$A$5,"<"&B2)-countif($A$1:$A$5,"<="&B1))/count($A$1:$A$5)。
不知错在那?或有更好的function? Thanks much!
N******n
发帖数: 3003
7
比如第B列是true or false, 但是这个true 是根据第A列的内容算出来的,所以我统计
出现true的次数: countif(B:B,“true”)就不行,如果把第B列的内容copy放到
text,然后再拷贝回去,这个时候的true就是一个word,与第A列没有任何关系,用
countif就好了。 有没有其他的简单的方法。
谢谢
g***j
发帖数: 40861
8
=COUNTIF(Sheet1!A:A,Sheet2!A)
怎么不对啊
b**j
发帖数: 20742
9
来自主题: ebiz版 - 问个excel问题
没有不增加辅助列的办法吗?我研究了半天countif都不会。。
D*****3
发帖数: 2683
10
来自主题: ebiz版 - 问个excel问题
countif 做不到你要的效果的
要不就写个function:
Function CountGain()
For i = 1 To 1000

If Range("A" & i) = "sold" And Range("B" & i) > Range("c" & i) Then
CountGain = CountGain + 1
End If


Next

End Function
h********a
发帖数: 6364
11
来自主题: ebiz版 - 包子问个excel问题
=countif(x1="a" and x2="A" ...)
大概就这样,你输入excel的时候,他会提示你格式
依样画葫芦就行
e*******e
发帖数: 657
12
来自主题: ebiz版 - 包子问个excel问题
对的,先highlight一下要count的表格,然后用countif
a******e
发帖数: 36306
13
google "excel countif"吧
j********8
发帖数: 2201
14
来自主题: ebiz版 - EXCEL问题求救~
=COUNTIF(DATA, 5)/COUNT(DATA)
得到每个Percentage后用pie画。不行的话,email联系。
练了10几年的excel终于派上用长了。
l******9
发帖数: 579
15
【 以下文字转载自 Statistics 讨论区 】
发信人: light009 (light009), 信区: Statistics
标 题: count unique values in file with 1 million rows
发信站: BBS 未名空间站 (Sat Apr 12 16:11:22 2014, 美东)
I need to count the unique values in one column in EXCEL 2010.
The worksheet has 1 million rows and 10 columns. All cell values are string
or numbers.
I used the solution at Count unique values in a column in Excel
=SUMPRODUCT((A2:A1000000<>"")/COUNTIF(A2:A100000,A2:A1000000&""))
But, it runs so long time that the EXCEL is almost ... 阅读全帖
m******6
发帖数: 6262
16
来自主题: Living版 - 问个EXCEL的问题 (转载)
【 以下文字转载自 WaterWorld 讨论区 】
发信人: majia666 (majia666), 信区: WaterWorld
标 题: 问个EXCEL的问题
发信站: BBS 未名空间站 (Sat Jan 30 14:02:27 2010, 美东)
=countif(a1:a10,XXXX, b1:b10,YYYY)
这个FUNCTION, 怎么写才对?
我就是想COUNT 在同一ROW里, COLUMN A 是XXXX,同时, COLUMN B 是YYYY的CELL的个数.
试了很多都不对.
r*******n
发帖数: 1739
17
来自主题: Living版 - 问个EXCEL的问题 (转载)
I would concatenate col A and B then countif XXXXYYYY
m******6
发帖数: 6262
18
来自主题: Working版 - 问个EXCEL的问题 (转载)
【 以下文字转载自 WaterWorld 讨论区 】
发信人: majia666 (majia666), 信区: WaterWorld
标 题: 问个EXCEL的问题
发信站: BBS 未名空间站 (Sat Jan 30 14:02:27 2010, 美东)
=countif(a1:a10,XXXX, b1:b10,YYYY)
这个FUNCTION, 怎么写才对?
我就是想COUNT 在同一ROW里, COLUMN A 是XXXX,同时, COLUMN B 是YYYY的CELL的个数.
试了很多都不对.
B*G
发帖数: 3662
19
好像没有COUNTIF, 倒是有个SUMIF, 懒得折腾了,改成1和2,直接SUM了
l*b
发帖数: 5305
20
来自主题: Pingpong版 - U1600 成绩表 (6月3日)
计算公式是shield提供的。用的方程式主要是countif, sum, 和roundup.
m******6
发帖数: 6262
21
来自主题: WaterWorld版 - 问个EXCEL的问题
=countif(a1:a10,XXXX, b1:b10,YYYY)
这个FUNCTION, 怎么写才对?
我就是想COUNT 在同一ROW里, COLUMN A 是XXXX,同时, COLUMN B 是YYYY的CELL的个数.
试了很多都不对.
m******6
发帖数: 6262
22
来自主题: WaterWorld版 - 问个EXCEL的问题
你的意思是让我把原始数据的那个BLOCK, 都变成比方说A-XXXX=0, 然后往下拉, 最后
在TOTAL?
我的问题其实比着个复杂的多, 我只是举个例子, 我要把着个COUNTIF 或SUMIF.
不能对原始数据操作.
m******6
发帖数: 6262
23
来自主题: WaterWorld版 - 问个EXCEL的问题
i have thousands of ROWs,
and, one cell have many value possibilities.
so, have to use a SUMIF, or COUNTiF.
T****e
发帖数: 2798
24
来自主题: Poetry版 - 加积分,工作量大啊
求达人指点一下MITBBS邮箱如何ATTACH文件。
不行只好把几个简单方程贴这儿:
判断某ID诗歌栏是否有新积分:
=IF(A3="","Not Selected to Add Pnt","Selected to Add Pnt")
将有内容的ENTRY加起来,加上以前积分,得当前积分:
=COUNTIF(B3:B100,"Selected to Add Pnt")+'Historical Points'!B2
m******6
发帖数: 6262
25
来自主题: CS版 - 问个EXCEL的问题 (转载)
【 以下文字转载自 WaterWorld 讨论区 】
发信人: majia666 (majia666), 信区: WaterWorld
标 题: 问个EXCEL的问题
发信站: BBS 未名空间站 (Sat Jan 30 14:02:27 2010, 美东)
=countif(a1:a10,XXXX, b1:b10,YYYY)
这个FUNCTION, 怎么写才对?
我就是想COUNT 在同一ROW里, COLUMN A 是XXXX,同时, COLUMN B 是YYYY的CELL的个数.
试了很多都不对.
a*z
发帖数: 294
26
来自主题: Database版 - 一个Excel的问题 (转载)
a couple of formulas will do the work, left(a1,4), countif(,,), etc.
i******t
发帖数: 11048
d**********6
发帖数: 4434
28
来自主题: Programming版 - jQuery还能活多久啊?
当然可以,但是不是这样做呢?
Excel有几百个函数,IF(), COUNTIF(), AVERAGE(), AVERAGEIF(), STEDV(), LEN()等
,都用JavaScript写一次吗?

了。
t**s
发帖数: 284
29
来自主题: Windows版 - excel的问题
use countif().
M*******a
发帖数: 15
30
来自主题: Biology版 - 大家帮帮忙
Let's say, genes in column A and peakvalues in column B
(from row x to row y)
1. Sort whole dataset by columns A & B (A to Z and smallest to largest)
2. Fill rows x to y in column C with =countif(Ax:Ay, Ax)
3. Copy column C and paste special "value" to column D
4. Sort whole dataset by columns D & A (smallest to largest, A to Z)
The data you want will be shown at the top of the sheet with "1" listed in
column D.
Z******5
发帖数: 435
31
=countif("选定要统计的区域",“选中或输入目的参数”)
l******9
发帖数: 579
32
【 以下文字转载自 Statistics 讨论区 】
发信人: light009 (light009), 信区: Statistics
标 题: count unique values in file with 1 million rows
发信站: BBS 未名空间站 (Sat Apr 12 16:11:22 2014, 美东)
I need to count the unique values in one column in EXCEL 2010.
The worksheet has 1 million rows and 10 columns. All cell values are string
or numbers.
I used the solution at Count unique values in a column in Excel
=SUMPRODUCT((A2:A1000000<>"")/COUNTIF(A2:A100000,A2:A1000000&""))
But, it runs so long time that the EXCEL is almost ... 阅读全帖
l******9
发帖数: 579
33
【 以下文字转载自 Statistics 讨论区 】
发信人: light009 (light009), 信区: Statistics
标 题: count unique values in file with 1 million rows
发信站: BBS 未名空间站 (Sat Apr 12 16:11:22 2014, 美东)
I need to count the unique values in one column in EXCEL 2010.
The worksheet has 1 million rows and 10 columns. All cell values are string
or numbers.
I used the solution at Count unique values in a column in Excel
=SUMPRODUCT((A2:A1000000<>"")/COUNTIF(A2:A100000,A2:A1000000&""))
But, it runs so long time that the EXCEL is almost ... 阅读全帖
p****e
发帖数: 165
34
这两天就要面试了,会有一个面试官现场问问Excel function, 我有两年Analyst经验
,但都是用SQL和BI tool来做Dashboard, 会基本的Excel function, 比如vlookup,
pivot table. 这两天时间我怎样才能最大效率地利用时间应对Excel现场面试?因为时
间有限,我想着重准备以下这些在实际工作中比较好用的Excel Function:
1. LOOKUP系列 (Vlookup, Hlookup等)
2. Offset
3. Match
4. countif, sumif
想问问版上给位大侠还有什么补充?不甚感激!
l******9
发帖数: 579
35
I need to count the unique values in one column in EXCEL 2010.
The worksheet has 1 million rows and 10 columns. All cell values are string
or numbers.
I used the solution at Count unique values in a column in Excel
=SUMPRODUCT((A2:A1000000<>"")/COUNTIF(A2:A100000,A2:A1000000&""))
But, it runs so long time that the EXCEL is almost frozen. And, it generates
25 processes in Win 7.
Are there more efficient ways to do it ?
Also, in the column, all values have for format of
AX_Y
here, A is a chara... 阅读全帖
d*****y
发帖数: 178
36
来自主题: Statistics版 - 怎样保留excel里Duplicated的ID
直接excel就能搞定啊。加一个column,用countif把每个学生的选课数计算出来。然后
选了两门的就是2,三门的就是3。我觉得挺简单的,不过大概我没懂你的问题。。。你
可以再问清楚点,应该excel就能搞定。
V****e
发帖数: 858
37
来自主题: Statistics版 - 怎样保留excel里Duplicated的ID
Sorry, not able to type in Chinese now.
The difficulties are: there are three terms per academic year: SU, FA, SP.
Each term the same courses are repeatedly offered. I have three years' data,
so the same courses were offered 9 times.
Do I have to create 9 separated files?
Another difficulty is if the students fail one course, they can re-take the
course at any following term.
By the way, what would be the formula for the "countif":).
Thanks very much for your help!
a*z
发帖数: 294
38
来自主题: Statistics版 - 怎样保留excel里Duplicated的ID
countifs, although sometime it does not work.
d*****y
发帖数: 178
39
来自主题: Statistics版 - 怎样保留excel里Duplicated的ID
Sorry that I just see you message here.
Created a file for you to take a look.
check your 站内邮箱
you will need to use countifs here.

data,
the
1 (共1页)