Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a spreadsheet with 8000 rows.
In column "I" I have text. eg. "Emily", "Greg" and "John" In Column "D" I have numbers. I need to count the rows whe Column I is equal to Emily and Column D is < 30 Column I is equal to Greg and Column D is < 50 Column I is equal to John and Column D is < 70 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT((D1:D8000="Emily")*(E1:E8000<30))
=SUMPRODUCT((D1:D8000="Greg")*(E1:E8000<50)) =SUMPRODUCT((D1:D8000="John")*(E1:E8000<70)) -- Gary''s Student - gsnu200904 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Correction:
=SUMPRODUCT((I1:I8000="Emily")*(D1:D8000<30)) =SUMPRODUCT((I1:I8000="Greg")*(D1:D8000<50)) =SUMPRODUCT((I1:I8000="John")*(D1:D8000<70)) -- Gary''s Student - gsnu200904 "Max2073" wrote: I have a spreadsheet with 8000 rows. In column "I" I have text. eg. "Emily", "Greg" and "John" In Column "D" I have numbers. I need to count the rows whe Column I is equal to Emily and Column D is < 30 Column I is equal to Greg and Column D is < 50 Column I is equal to John and Column D is < 70 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count based on two criteria. | Excel Worksheet Functions | |||
Count based on two different criteria | Excel Worksheet Functions | |||
COUNT based on 2 criteria | Excel Worksheet Functions | |||
Count based on criteria | Excel Discussion (Misc queries) | |||
Count or Sum based on more than 1 criteria | Excel Worksheet Functions |