Count number of people across multiple columns with criteria 2

╄→гoц情女王★ 提交于 2019-12-13 03:45:26

问题


Here is the original question:

Count number of people across multiple columns with criteria

Original formula:

=COUNTIF(C3:F3,">" & DATE(YEAR($B$1)-20,MONTH($B$1),DAY($B$1)))

I am looking to modify the formula to count ages >= 21 and <= 24.

Here is what I have tried:

=COUNTIF(INDEX(C3:F3),"<="&DATE(YEAR($E$4)-21,MONTH($E$4),DAY($E$4)&">="&DATE(YEAR($E$4)-24,MONTH($E$4),DAY($E$4))))

Any help is must appreciated!


回答1:


Your COUNTIFS is wrong. You need to put the range twice not use & to add criteria:

=COUNTIFS(C3:F3,"<="&DATE(YEAR($E$4)-21,MONTH($E$4),DAY($E$4)),C3:F3,">="&DATE(YEAR($E$4)-24,MONTH($E$4),DAY($E$4))))


来源:https://stackoverflow.com/questions/49287644/count-number-of-people-across-multiple-columns-with-criteria-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!