![]() |
syntax for countif when cells fall within a numerical range
I have a column of numerical data, for which I need frequency counts within
certain ranges. E.G. If a cell value is = 41 AND <= 50, I want to count that cell as one. I can't figure out the syntax. |
syntax for countif when cells fall within a numerical range
Countif can only be used with one criteria.
Use Sumproduct instead. For example, if your list is in A1:A100, you could use =SUMPRODUCT(--(A1:A100=41),--(A1:A100<=50)) "Tom L" wrote: I have a column of numerical data, for which I need frequency counts within certain ranges. E.G. If a cell value is = 41 AND <= 50, I want to count that cell as one. I can't figure out the syntax. |
syntax for countif when cells fall within a numerical range
"Tom L" wrote:
I have a column of numerical data, for which I need frequency counts within certain ranges. E.G. If a cell value is = 41 AND <= 50, I want to count that cell as one. I can't figure out the syntax. One way, via sumproduct, eg: =SUMPRODUCT((A2:A10=41)*(A2:A10<=50)) Adapt the range to suit. -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
syntax for countif when cells fall within a numerical range
Countif can only be used with one criteria.
Think we could use 2 countifs as another option: =COUNTIF(A:A,"=41")-COUNTIF(A:A,"50") -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
syntax for countif when cells fall within a numerical range
Ha, very cute. It's not really 'one' countif, but I like it anyways.
"Max" wrote: Countif can only be used with one criteria. Think we could use 2 countifs as another option: =COUNTIF(A:A,"=41")-COUNTIF(A:A,"50") -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
syntax for countif when cells fall within a numerical range
Countif can only be used with one criteria.
But you can use more criteria when nested inside another function like this: =SUM(COUNTIF(A1:A20,{"=41","50"})*{1,-1}) =SUM(COUNTIF(A1:A20,{"X","Y","Z"})) G1:G3 = X, Y, Z =SUMPRODUCT(COUNTIF(A1:A20,G1:G3)) -- Biff Microsoft Excel MVP "sb1920alk" wrote in message ... Countif can only be used with one criteria. Use Sumproduct instead. For example, if your list is in A1:A100, you could use =SUMPRODUCT(--(A1:A100=41),--(A1:A100<=50)) "Tom L" wrote: I have a column of numerical data, for which I need frequency counts within certain ranges. E.G. If a cell value is = 41 AND <= 50, I want to count that cell as one. I can't figure out the syntax. |
All times are GMT +1. The time now is 11:30 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com