Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Can someone help me write this formula correctly.
I have 2 columns A B 1 1 1 5 1 6 1 10 2 1 2 12 2 20 3 4 I want to count all the ones that have 1 in column A in the range of 1 to 5 in B Column. And so forth for each # in column A. Thanks B. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(A1:A8 = 1),--(B1:B8 = 1), --(B1:B8 <= 5))
-- Kevin Vaughn "BSantos" wrote: Can someone help me write this formula correctly. I have 2 columns A B 1 1 1 5 1 6 1 10 2 1 2 12 2 20 3 4 I want to count all the ones that have 1 in column A in the range of 1 to 5 in B Column. And so forth for each # in column A. Thanks B. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT((A1:A8=1)*(B1:B8=1)*(B1:B8<=5))
Regards Trevor "BSantos" wrote in message ... Can someone help me write this formula correctly. I have 2 columns A B 1 1 1 5 1 6 1 10 2 1 2 12 2 20 3 4 I want to count all the ones that have 1 in column A in the range of 1 to 5 in B Column. And so forth for each # in column A. Thanks B. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
countif criteria only one word of few doesn't work | Excel Worksheet Functions | |||
Countif w/ Multiple Criteria | Excel Worksheet Functions | |||
countif variable criteria | Excel Discussion (Misc queries) | |||
Countif using format criteria....not number criteria? | Excel Worksheet Functions | |||
counting cells (COUNTIF) based on two or more criteria | Excel Worksheet Functions |