How to check > or < in a column

alive15

New Member
Joined
Jul 13, 2016
Messages
36
Good morning,

I have a column with about 4000 numbers. I want to see how many cells in this column have a value greater than .17.

Thanks,
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
How about
=COUNTIFS(B:B,">0.17")
 
Upvote 0
There's only one number greater than 0.17
Do you mean greater then or equal to?
 
Upvote 0
There's .173 and 1, both greater than .17; but even if there is only one number greater than .17, then I should read a value of "1", not "0" for the entire column. I am just looking for the basic formula. Is there some error with yours?
 
Upvote 0
I thought that the 1 was the result of the formula.
The reason that you are getting 0 is that you have a circular reference.
Either move the formula to another column, or specify the range of data you want to work on like
=COUNTIFS(Q2:Q17,">0.17")
 
Upvote 0
I'm unsure what circular reference means

Hi,

Your formula was in may be Q18, and the formula is Counting the Entire Column Q, so you're telling the formula to Count itself "circular reference".
 
Last edited:
Upvote 0
You're welcome & thanks for the feedback.
A circular reference is when a formula is looking at the cell that contains the formula.
In this case you were looking for any cell in col Q that was greater than 0.17, but as the formula is in col Q it tries to count itself.
 
Upvote 0
Thank you.

I have one more question, I have a similar scenario in a column where instead of numbers, I have "Good" or "Reject" and I want to count how many are "Reject". I tried using =COUNTIFS(G13:G798,"Reject"). How can I do this for words? See picture below.

https://pasteboard.co/HRKjXRO.jpg

Thanks,
 
Upvote 0

Forum statistics

Threads
1,214,381
Messages
6,119,192
Members
448,874
Latest member
Lancelots

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