counting >=100%

  • Thread starter Thread starter alisaheb
  • Start date Start date
A

alisaheb

I am trying to count number of entries in a column meeting 2 conditions - one
condition being column1 values being >=100% & column2 values = "Text".

I am getting total number of entries meeting Column2="Text" minus
Column1>=100%
 
If your data set is as follows:

A B
100% empty
56% yes
107% no
103% text
75% text

if your intended total is 5 then use the formuale as follows:
=SUM(COUNTIF(A:A,">=100%"),COUNTIF(B:B,"TEXT"))

jatman
 
=SUMPRODUCT(--(A2:A200>=100%),--(B2:B200="TEXT"))

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top