Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would like to know how to count if 2 criterea are true in a range of cells
|
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(rng1="text"),--(rng2=number))
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Dan Shoemaker" wrote in message ... I would like to know how to count if 2 criterea are true in a range of cells |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
TY
"Bob Phillips" wrote: =SUMPRODUCT(--(rng1="text"),--(rng2=number)) -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Dan Shoemaker" wrote in message ... I would like to know how to count if 2 criterea are true in a range of cells |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() "Dan Shoemaker" wrote: TY "Bob Phillips" wrote: =SUMPRODUCT(--(rng1="text"),--(rng2=number)) -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Dan Shoemaker" wrote in message ... I would like to know how to count if 2 criterea are true in a range of cells I was wondering if 3 or more critereas are true in a range of cells... how can i get them to count value of 1... instead of 3 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
Continuing with what Bob told you, you can add as many criteria as you wish =SUMPRODUCT(--(rng1="text"),--(rng2=number),--(rng3=number),--(rng4="text")) Each test will return True or False. The double unary minus will coerce True's to 1's and False's to 0's. Multiplying them together, it is only all 1's that will return a value of 1, any 0 will make the whole sum 0. So Sumproduct is adding only the values where all tests are true, and therefore giving your Count. -- Regards Roger Govier "Jman" wrote in message ... "Dan Shoemaker" wrote: TY "Bob Phillips" wrote: =SUMPRODUCT(--(rng1="text"),--(rng2=number)) -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Dan Shoemaker" wrote in message ... I would like to know how to count if 2 criterea are true in a range of cells I was wondering if 3 or more critereas are true in a range of cells... how can i get them to count value of 1... instead of 3 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
COUNTIF multiple crietria | Excel Worksheet Functions | |||
Using COUNTIF in multiple wooksheets | Excel Discussion (Misc queries) | |||
Countif on multiple dates | Excel Worksheet Functions | |||
countif() help for multiple rows | Excel Worksheet Functions | |||
CountIF across multiple sheets in a workbook | Excel Worksheet Functions |