T theillknight Aug 10, 2004 #1 Is there some method to use countif for multiple criteria instead of adding several single-criteria countif's together?
Is there some method to use countif for multiple criteria instead of adding several single-criteria countif's together?
E Earl Kiosterud Aug 10, 2004 #2 Knight, We generally use SUMPRODUCT to count rows meeting conditions. =SUMPRODUCT((A2:A7=5)*(B2:B7="Good")) =SUMPRODUCT((A2:A7=5)*(B2:B7="Good")*(C2:C7=1))
Knight, We generally use SUMPRODUCT to count rows meeting conditions. =SUMPRODUCT((A2:A7=5)*(B2:B7="Good")) =SUMPRODUCT((A2:A7=5)*(B2:B7="Good")*(C2:C7=1))
F Frank Kabel Aug 10, 2004 #3 Hi use SUMPRODUCT. See: http://www.xldynamic.com/source/xld.SUMPRODUCT.html