Forum Discussion
NancyBogg
Jul 28, 2021Copper Contributor
Use of Named Ranges in Countif formulas
It is my understanding that we can't use a named range that consists of non-contiguous cells in a countif formula. eg: COUNTIF(named_range,C280). Is that correct? If this is correct, it makes me...
UlzaW
Jun 12, 2024Copper Contributor
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.
HansVogelaar
Jun 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.