Find the first empty cell in the same column/row

前端 未结 3 1802
忘掉有多难
忘掉有多难 2020-12-06 17:28

I am trying to work out a formula that will give me the row number of the first empty cell in a column. Currently I am using:

=MATCH(TRUE, INDEX(ISBLANK(A:A)         


        
3条回答
  •  有刺的猬
    2020-12-06 18:22

    All you have to do is count the non blank cells in a column : COUNTA e.g.

    =COUNTA(E:E)

    If you want to find the first blank cell from further down the column, then set the column range e.g. E23:E100 and add the cell number -1 to it.

    =COUNTA(e23:E1000)+23-1

提交回复
热议问题