countif question

C

Confused

I have a table that shows various interest rates ranges, which is linked to a
data sheet.

5.25% to 5.52%
5.53% to 5.77%
5.78% to 6.02%

I want excel to count for me the number of loans that fall in between thee
5.25% to 5.52% range, etc. The problem is the 5.52% figure is not static. I
am currently using this formula: countif(combined$A1:A200,"<=5.52%"). I
like to avoid having to change the "5.52%" number in the formula everytime my
range changes.
 
D

Dave Peterson

If that value is in a cell, you could use that in the formula:

=countif(combined$A1:A200,"<="&z99)
 
C

Confused

what is the &z99 referring to in the formula?

Dave Peterson said:
If that value is in a cell, you could use that in the formula:

=countif(combined$A1:A200,"<="&z99)
 
D

Dave Peterson

Z99 would be the address of the cell holding the percentage.

Change it to what you need.
 

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

Similar Threads

COUNTIF Cells in Range? 4
Countif/Vlookup 2
Countif formula 2
countif 3
Countif only once 4
Function Question 1
Countif Problem 3
COUNTIFS (the numbers in a column, when subtracted meet a certain criteria) 1

Top