Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need a formula for the following:
If Col E on Sheet1 = "Canada" (B5), than count if Col O on Sheet1 if between ..75 & .999 Someone had tried helping earlier with a similar formula, but it didn't work. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUMPRODUCT((Sheet1!E2:E5000="Canada")*(Sheet1!O2: O5000=.75)*(Sheet1!O2:O5000<=.999))
Presuming you want .75 and .999 included. "KC" wrote: I need a formula for the following: If Col E on Sheet1 = "Canada" (B5), than count if Col O on Sheet1 if between .75 & .999 Someone had tried helping earlier with a similar formula, but it didn't work. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That gave me a #DIV/0! error. I'm trying to count the insances a cell in
that range is between .75 and .999. "Sean Timmons" wrote: =SUMPRODUCT((Sheet1!E2:E5000="Canada")*(Sheet1!O2: O5000=.75)*(Sheet1!O2:O5000<=.999)) Presuming you want .75 and .999 included. "KC" wrote: I need a formula for the following: If Col E on Sheet1 = "Canada" (B5), than count if Col O on Sheet1 if between .75 & .999 Someone had tried helping earlier with a similar formula, but it didn't work. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Did you use this formula or did you use this formula as a divisor in a different
formula? If you used this formula as-is, then you have a #div/0 error in one of those ranges (E2:e5000 or o2:o5000). (Remember to look in hidden rows, too!) I'd clean up those errors and continue to use Sean's suggestion. If you used Sean's formula as a divisor, then you'll want to test to see if it's 0 before you use it: =if(sean'sformula=0,"Nothing found",(someotherformula)/sean'sformula)) KC wrote: That gave me a #DIV/0! error. I'm trying to count the insances a cell in that range is between .75 and .999. "Sean Timmons" wrote: =SUMPRODUCT((Sheet1!E2:E5000="Canada")*(Sheet1!O2: O5000=.75)*(Sheet1!O2:O5000<=.999)) Presuming you want .75 and .999 included. "KC" wrote: I need a formula for the following: If Col E on Sheet1 = "Canada" (B5), than count if Col O on Sheet1 if between .75 & .999 Someone had tried helping earlier with a similar formula, but it didn't work. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count Employee Work Time - Don't Double-count Overlapping Apts. | Excel Worksheet Functions | |||
Excel 2000, count, sort a list & count totals? | Excel Worksheet Functions | |||
How do i count numbers and letters to find a total count of all | Excel Worksheet Functions | |||
Count Intervals of 1 Numeric value in a Row and Return Count down Column | Excel Worksheet Functions | |||
Count Intervals of Filtered TEXT values in Column and Return Count across a Row | Excel Worksheet Functions |