Formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I am trying to work out how to create a formula that reads only entries of
"Open" in column A and counts instances of those with "Open" and a value of
over 10 in column B i.e. a value of 2 should be returned in the example
below. Can anyone please help

Cheers
Ross

A B C D
1open 11
2closed 11
3open 16
4open 7
 
=SUM((A1:A6="open")*(B1:B6>10))

this is an array formula, enter it with ctrl+shift+enter.
change the range to your needs.

hth

carlo
 
Thanks JMB.

If I were to have the formula on a different sheet to the data how would
that be done?
 
Back
Top