Counting

  • Thread starter Thread starter Ravi
  • Start date Start date
R

Ravi

I am trying to count how many times the value in Col A has exceeded the value
in Col B in a given range, How to get this
 
Ravi said:
I am trying to count how many times the value in Col A has exceeded the
value
in Col B in a given range, How to get this

One way (adjust range lenth to suit):
=SUMPRODUCT(--(A1:A999>B1:B999))
 
Back
Top