Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
748 views
Welcome To Ask or Share your Answers For Others

1 Answer

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))))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...