COUNTA AND

L

luvthavodka

Need formula based on:

COUNTA(E:E) AND COUNTIF(F:F,"Sarah")

But how do I put these two requirements together?

Thanks
 
B

Bob Phillips

=SUMPRODUCT(--(F1:F100="Sarah"),--(NOT(ISBLANK(E1:E100))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
O

olasa

=AND(COUNTA(E:E),COUNTIF(F:F,"Sarah"))
or maybe that should be
=COUNTA(E:E)=COUNTIF(F:F,"Sarah")

Ola
 
Top