Count cells over 10 characters in Excel and Google Sheets
{=SUM(N(LEN(A:A)>10))} // array formula
=SUMPRODUCT(N(LEN(A:A)>10)) // count within a column
=SUMPRODUCT(N(LEN(A:A)>10)) // count within a cell
{=SUM(N(LEN(A:A)>10))} // array formula
=SUMPRODUCT(N(LEN(A:A)>10)) // count within a column
=SUMPRODUCT(N(LEN(A:A)>10)) // count within a cell
=SUMPRODUCT(N(LEN(A:A)>10)) // count within a column
=SUMPRODUCT(N(LEN(A3)>10)) // count within a cell
{=SUM(N(LEN(A:A)>10))}
💡 3rd formula will produce the same result as the above two
=SUMPRODUCT(N(LEN(A:A)>10)) // count within a column
=SUMPRODUCT(N(LEN(A3)>10)) // count within a cell
=ArrayFormula(SUM(N(LEN(A:A)>10)))
💡 3rd formula will produce the same result as above two