Count non blank rows in a certain range/column Excel

后端 未结 3 2024
迷失自我
迷失自我 2021-01-18 18:47

I want to count empty (or non-blank) rows in a given column (or range). Example: I have a column which is spaning over 4 cells width, and each cell has either a single \'\'

3条回答
  •  不知归路
    2021-01-18 19:37

    The COUNTA() function will do that for you. For example:

    =COUNTA(A1:A100)
    

    Will return the number of non-blank cells in the range A1:A100

提交回复
热议问题