14.2统计函数(Countif、Countifs)
[if !supportLists]· [endif]一、基本用法
[if !supportLists]· [endif]函数功能Count:计算参数列表中的数字项的个数
[if !supportLists]· [endif]不能转换为数字的文本、空白单元格、逻辑值、错误值都不计算在内。
[if !supportLists]· [endif]CountA:计算参数列表中非空的项个数
[if !supportLists]· [endif]参数值可以是任何类型,包括空字符(""),但不包括空白单元格。
[if !supportLists]· [endif]Countblank:计算参数列表中空单元格的个数
[if !supportLists]· [endif]空白单元格和空文本("")会被计算在内。
[if !supportLists]· [endif]1.基本用法-Countif
[if !supportLists]· [endif]注意:
[if !supportLists]· [endif]1、COUNTIF函数的第一参数绝对引用,是为了公式向下填充时,保持引用范围不变;
[if !supportLists]· [endif]2、COUNTIF函数的第二参数直接使用相对引用待统计单元格,公式向下填充时,D2依次变为D3、D4……
[if !supportLists]· [endif]注意:
[if !supportLists]· [endif]1、如果条件为文本,需要使用双引号引起来;
[if !supportLists]· [endif]2、如果条件为数字,则无需使用双引号。
[if !supportLists]· [endif]COUNTIFS函数将条件应用于跨多个区域的单元格,并计算符合所有条件的次数。即多条件计数。
[if !supportLists]· [endif]COUNTIFS(criteria_range1,criteria1,criteria_range2,criteria2,…)
[if !supportLists]· [endif]COUNTIFS(条件区域1,条件1,条件区域2,条件2…)
[if !supportLists]· [endif]条件区域1:必需。在其中计算关联条件的第一个区域。
[if !supportLists]· [endif]条件1:必需。要进行计数的第一个条件。
[if !supportLists]· [endif]条件区域2:可选。在其中计算关联条件的第二个区域。
[if !supportLists]· [endif]条件2:可选。要进行计数的第二个条件。
[if !supportLists]· [endif]二、模糊条件计数
[if !supportLists]· [endif]三、文本非空真空数据个数
[if !supportLists]· [endif]注意:
[if !supportLists]· [endif]*代替任意多个字符
[if !supportLists]· [endif]<>代表非空数据
[if !supportLists]· [endif]=代表真空数据
[if !supportLists]· [endif]四、按产品统计序号
[if !supportLists]· [endif]=COUNTIF($C$2:C2,C2)
[if !supportLists]· [endif]=C2&COUNTIF($C$2:C2,C2)
[if !supportLists]· [endif]COUNTIF函数的统计区域是$C$2:C2,第一个C2是行绝对引用,第二个C2,是相对引用。
[if !supportLists]· [endif]当公式向下复制时,就会变成$C$2:C3、$C$2:C4……一个不断扩展的区域,从这个动态区域中统计C列产品的个数。
[if !supportLists]· [endif]按产品统计序号(乱序)
[if !supportLists]· [endif]=COUNTIF($C$2:C2,C2)
[if !supportLists]· [endif]=C2&COUNTIF($C$2:C2,C2)
[if !supportLists]· [endif]COUNTIF函数的统计区域是$C$2:C2,第一个C2是行绝对引用,第二个C2,是相对引用。
[if !supportLists]· [endif]当公式向下复制时,就会变成$C$2:C3、$C$2:C4……一个不断扩展的区域,从这个动态区域中统计C列产品的个数。
[if !supportLists]· [endif]五、一对多查询
[if !supportLists]· [endif]六、数据有效性
[if !supportLists]· [endif]操作步骤:
[if !supportLists]· [endif]步骤1在左表前插入一列并设置公式,用countif函数统计客户的销售额并用&连接成产品名称+序号的形式。
[if !supportLists]· [endif]A2:C2&COUNTIF($C$2:C2,C2)
[if !supportLists]· [endif]步骤2在F9设置公式并复制即可得到F2单元格中产品的所有销售记录。
[if !supportLists]· [endif]=IFERROR(VLOOKUP($F$2&ROW(A1),$A:$D,COLUMN(B1),0),"")
[if !supportLists]· [endif]解决一对多查找的关键点是把重复的值用Countif变成不同的,然后用Vlookup函数再进行查找。
[if !supportLists]· [endif]掌握这个思路很重要