Forum Discussion
Use of Named Ranges in Countif formulas
You are correct, but that is not a limitation of named ranges, but of the COUNTIF function (and related functions). Other functions, such as SUM and COUNTA, work fine with named ranges consisting of non-contiguous cells.
If you know the name of your cell range, you can manually enter it in the countif function. You will just not be able to see the range names as a drop-down list in the name box.
For example this works: =Countif(throws,6) - the range named throws contain randomly generated numbers between 1 and 6. The countif function determines how many times the number 6 was thrown. You just have to determine the name of your range up front.
- HansVogelaarJun 12, 2024MVP
Sure, you can use a named range in COUNTIF, but the problem of the OP was that "we can't use a named range that consists of non-contiguous cells in a countif formula". COUNTIF only works with contiguous ranges, named or not.