Help w/ alternate to Countif

D

Destrachan

Formula below is pretty basic, however the problem I'm running into is
that the WB that the formula is pulling from is closed more often than
not. Is there anyone that can provide me a bit of help w/ a formula
that accomplishes the same thing w/ the target WB being closed?


=COUNTIF('C:\Test\Test\Reports\[Test.xls]November 2007'!$N$2:$N
$1000,">=8:00 PM")
 
T

T. Valko

Use SUMPRODUCT:

=SUMPRODUCT(--('C:\Test\Test\Reports\[Test.xls]November
2007'!$N$2:$N$1000>=TIME(20,0,0)))
 
D

Destrachan

Use SUMPRODUCT:

=SUMPRODUCT(--('C:\Test\Test\Reports\[Test.xls]November
2007'!$N$2:$N$1000>=TIME(20,0,0)))

--
Biff
Microsoft Excel MVP




Formula below is pretty basic, however the problem I'm running into is
that the WB that the formula is pulling from is closed more often than
not. Is there anyone that can provide me a bit of help w/ a formula
that accomplishes the same thing w/ the target WB being closed?
=COUNTIF('C:\Test\Test\Reports\[Test.xls]November 2007'!$N$2:$N
$1000,">=8:00 PM")- Hide quoted text -

- Show quoted text -

Wonderful, thank you very much.
 
T

T. Valko

Use SUMPRODUCT:

=SUMPRODUCT(--('C:\Test\Test\Reports\[Test.xls]November
2007'!$N$2:$N$1000>=TIME(20,0,0)))

--
Biff
Microsoft Excel MVP




Formula below is pretty basic, however the problem I'm running into is
that the WB that the formula is pulling from is closed more often than
not. Is there anyone that can provide me a bit of help w/ a formula
that accomplishes the same thing w/ the target WB being closed?
=COUNTIF('C:\Test\Test\Reports\[Test.xls]November 2007'!$N$2:$N
$1000,">=8:00 PM")- Hide quoted text -

- Show quoted text -

Wonderful, thank you very much.

You're welcome. Thanks for the feedback!
 
Top