Excel 2000 Formula

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

Guest

I am using Excel 2000 and I am trying to create a formula that does the
following:

If cells D4 to D87 have values that range from 45% to 100%, how do i put a
formula in E78 that counts the number of cells with values <80% and >=65%

Many thanks in advance.
 
Hi Richard

Either
=COUNTIF(D4:D87,">="&65%)-COUNTIF(D4:D87,">="&80%)
or
=SUMPRODUCT((D4:D87>=65%)*(D4:D87<=80%))
 

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