Forum Discussion
Douglas_
Aug 11, 2025Copper Contributor
COUNTIFS for multiple ranges
Hi I'm struggling to complete this formula. I need to count to the total quantity of cells that have a value but only if they hit all 3 requirements. E.g. IF Column A says 'Douglas' an...
SnowMan55
Aug 11, 2025Bronze Contributor
A simple technique is
= COUNTIFS($A$2:$A$1000, "Douglas", $B$2:$B$1000, "<499", $C$2:$C$1000, "*")
+ COUNTIFS($A$2:$A$1000, "Douglas", $B$2:$B$1000, "<499", $D$2:$D$1000, "*")
+ COUNTIFS($A$2:$A$1000, "Douglas", $B$2:$B$1000, "<499", $E$2:$E$1000, "*")
+ COUNTIFS($A$2:$A$1000, "Douglas", $B$2:$B$1000, "<499", $F$2:$F$1000, "*")
(Yes, it works without the extra spaces and even if you don't break it into multiple lines.) See the attached workbook for more information.