Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am using sumproduct to count a total number of cases. The formula I have
been using is: =SUMPRODUCT((report!$Y$4:$Y$400<60)*(report!$Y$4:$ Y$400-60)) I have some cells that have a value of 0, and some are blank. I don't want to count the cells that are blank, but I do want the cells with zero counted. How would I do this? Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi!
Try this: =SUMPRODUCT((ISNUMBER(report!$Y$4:$Y$400))*(report !$Y$4:$Y$400<60)*(report!$Y$4:$Y$400-60)) Biff "Matt" wrote in message ... I am using sumproduct to count a total number of cases. The formula I have been using is: =SUMPRODUCT((report!$Y$4:$Y$400<60)*(report!$Y$4:$ Y$400-60)) I have some cells that have a value of 0, and some are blank. I don't want to count the cells that are blank, but I do want the cells with zero counted. How would I do this? Thanks in advance. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(report!$Y$4:$Y$400-60),--(report!$Y$4:$Y$400<60),--(report!$
Y$4:$Y$400<"")) -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Matt" wrote in message ... I am using sumproduct to count a total number of cases. The formula I have been using is: =SUMPRODUCT((report!$Y$4:$Y$400<60)*(report!$Y$4:$ Y$400-60)) I have some cells that have a value of 0, and some are blank. I don't want to count the cells that are blank, but I do want the cells with zero counted. How would I do this? Thanks in advance. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks! This worked like I wanted it to.
I really appreciate it. "Biff" wrote: Hi! Try this: =SUMPRODUCT((ISNUMBER(report!$Y$4:$Y$400))*(report !$Y$4:$Y$400<60)*(report!$Y$4:$Y$400-60)) Biff "Matt" wrote in message ... I am using sumproduct to count a total number of cases. The formula I have been using is: =SUMPRODUCT((report!$Y$4:$Y$400<60)*(report!$Y$4:$ Y$400-60)) I have some cells that have a value of 0, and some are blank. I don't want to count the cells that are blank, but I do want the cells with zero counted. How would I do this? Thanks in advance. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
Biff "Matt" wrote in message ... Thanks! This worked like I wanted it to. I really appreciate it. "Biff" wrote: Hi! Try this: =SUMPRODUCT((ISNUMBER(report!$Y$4:$Y$400))*(report !$Y$4:$Y$400<60)*(report!$Y$4:$Y$400-60)) Biff "Matt" wrote in message ... I am using sumproduct to count a total number of cases. The formula I have been using is: =SUMPRODUCT((report!$Y$4:$Y$400<60)*(report!$Y$4:$ Y$400-60)) I have some cells that have a value of 0, and some are blank. I don't want to count the cells that are blank, but I do want the cells with zero counted. How would I do this? Thanks in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do i protect cells in a shared worksheet | Excel Discussion (Misc queries) | |||
Conditional formatting...cont. from 9/25 | Excel Discussion (Misc queries) | |||
SUMPRODUCT TO CALCULATE VISIBLE CELLS ONLY | Excel Worksheet Functions | |||
Convert data type of cells to Text,Number,Date and Time | Excel Worksheet Functions | |||
Sumproduct function not working | Excel Worksheet Functions |