Count if cell between range and text status

tlai34

New Member
Joined
May 31, 2018
Messages
6
Hi,

I want a formula to count when a number is between a range and another column has the appropriate text.

It will be similar to =COUNTIFS(I10:I328, "H = High ", L10:L328, "Closed") except where I10:I328, "H = High " is a number range instead.

I tried =COUNTIFS($F$11:$F$96,">=1",$F$11:$F$96,"<=6", K11:K329, "Open") but it doesn't seem to work.

I also have conditional formatting on the F column if it would help.

The number range is from
1-6 = red
7-20 = orange
21-25 = green
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
The rages you feed to COUNTIFS are unequal... Try to adjust to the correct size:

=COUNTIFS($F$11:$F$96,">=1",$F$11:$F$96,"<=6", $K$11:$K$96, "Open")
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,260
Members
452,627
Latest member
KitkatToby

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top