Using Excel 2000 (yes, it's old - I know), I can't get one variant of array formula to give me right answer and I'm baffled in trying to get proper count based on two criteria.
Here's two ways I've tried it - both give result of 1 when it should be 0:
Col G has zip codes and O$3865 has 02661 as criteria #1
Col L has nbr of minutes in HH:MM fmt and $L3887 has 00:20 in proper time fmt as criteria #2
BUT -- There are NO times greater than 20 min for any row that has 02661 zip!
The rest of my array formulas that look for EQUAL match on other various times work just fine using the first formula style so why doesn't the GREATER THAN work?
Also, my overall total for same "over 20 min" gives 61 when it's actually around 27 -- that formula is
I don't get that either -- I've tried looking at other threads but I've got some visual issues so not all that easy to read huge amts of text.
Here's two ways I've tried it - both give result of 1 when it should be 0:
Code:
{=SUM(($G$2:$G$3862=O$3865)*($L$2:$L$3862>$L3887))}
(=COUNT(IF($G$2:$G$3862=O$3865,IF($L$2:$L$3862>$L3887,1)))}
Col L has nbr of minutes in HH:MM fmt and $L3887 has 00:20 in proper time fmt as criteria #2
BUT -- There are NO times greater than 20 min for any row that has 02661 zip!
The rest of my array formulas that look for EQUAL match on other various times work just fine using the first formula style so why doesn't the GREATER THAN work?
Also, my overall total for same "over 20 min" gives 61 when it's actually around 27 -- that formula is
Code:
{=SUM(IF($L$2:$L$3862>$L$3887,1,0))}