How To Count Cells With A Specific Content In A Range in Excel
To count a number of cells with a text in a specific range you just need to use sumproduct function. You can build formula like this:
=SUMPRODUCT(–ISTEXT(RANGE))
You can count a number of cells with a value as well with similar formula:
=SUMPRODUCT(–ISNUMBER(RANGE))
There are others functions you can use with this kind of formulas:
- =SUMPRODUCT(–ISBLANK(RANGE))
- =SUMPRODUCT(–ISERR(RANGE))
- =SUMPRODUCT(–ISERROR(RANGE))
- =SUMPRODUCT(–ISEVEN(NUMBER))
- =SUMPRODUCT(–ISFORMULA(RANGE))
- =SUMPRODUCT(–ISLOGICAL(RANGE))
- =SUMPRODUCT(–ISNA(RANGE))
- =SUMPRODUCT(–ISNONTEXT(RANGE))
- =SUMPRODUCT(–ISODD(NUMBER))
- =SUMPRODUCT(–ISOWEEKNUM(DATE))
- =SUMPRODUCT(–ISPMT(RATE,PER,NPER,PV))
- =SUMPRODUCT(–ISREF(RANGE))
Isn’t an Excel wonderful that makes your life so much easier?
Template
You can download the Template here – Download
Further reading: Basic concepts Getting started with Excel Cell References