Count cells that contain any text

后端 未结 6 1703
囚心锁ツ
囚心锁ツ 2020-12-05 01:38

I want to count the cells that contain anything within a range. Any cell that contain text, or numbers or something else should do a plus one in my result-cell.

I fo

6条回答
  •  無奈伤痛
    2020-12-05 02:21

    Sample file

    Note:

    • Tried to find the formula for counting non-blank cells (="" is a blank cell) without a need to use data twice. The solution for goolge-spreadhseet: =ARRAYFORMULA(SUM(IFERROR(IF(data="",0,1),1))). For excel ={SUM(IFERROR(IF(data="",0,1),1))} should work (press Ctrl+Shift+Enter in the formula).

提交回复
热议问题