简体   繁体   English

Excel计数列单元格值等于的次数

[英]Excel count number of times a column cell value equals

Hi I have the following spread sheet: 嗨,我有以下电子表格:

在此处输入图片说明

I want to count the number of times the cells in column C have a value below .8 and where the corresponding cell in column A equals 1. I also want to count the number of times that the cells in column D have a value below .8 and where the corresponding cell in column B is 1? 我想计算C列中的单元格值小于.8且A列中的对应单元格等于1的次数。我还想计算D列中的单元格值小于的次数。 8,并且B列中的相应单元格为1?

At the moment I have managed to colour the cells in red when these are true using conditional formatting. 目前,我已经成功使用条件格式将单元格设置为红色。 But unable to workout how to count these also? 但是也不能锻炼这些数呢?

Many thank for any help 非常感谢您的帮助

Use COUNTIFS() : 使用COUNTIFS()

For Column C: 对于列C:

=COUNTIFS(A1:A10,1,C1:C10,"<" & .8)

For Column D: 对于D列:

=COUNTIFS(B1:B10,1,D1:D10,"<" & .8)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 根据条件计算在excel列中重复值的次数 - Count the number of times a value is repeated in a column of excel based on a condition Excel计数值在列中出现的次数(如果该行唯一) - Excel count number of times a value appears in column, if unique to the row Excel计数A列中的单元格小于B列中的相应单元格的范围内的次数 - Excel Count number of times in range that cells in column A are less than corresponding cell in column B VBA Excel-当列中的单元格值等于零时删除行 - VBA Excel - Deleting rows when cell value in column equals zero Excel公式计算文本在单元格中出现的次数 - Excel Formula To Count The Number Of Times a Text Appeared in a Cell 在Excel中按单元格值获取列号 - Get column number by cell value in Excel Excel VBA-如果B列中的单元格包含一个值,则A列等于“值”,但不要覆盖现有的A列数据 - Excel VBA - If a cell in column B contains a value then column A equals “value” BUT do not overwrite existing column A data 如何仅计算excel列中的条目一定次数? - How to count entries in excel column only certain number of times? Excel - 如果行的第一个单元格等于值/字符串,然后计算行中的单元格是否等于值/字符串 - Excel - if first cell of row equals a value/string and then count if cells in row equal a value/string 当单元格值等于X时需要复制/粘贴行(x次) - Need to copy/paste row (x number of times) when cell value equals X
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM