returning empty cell if minimum of a range contains all empty values

后端 未结 1 1452
甜味超标
甜味超标 2021-01-29 10:21

I have a formula which find minimum date values from AF4 to next empty cell in A starting from A4.

=MIN(INDIRECT(ADDRESS(ROW(AF4);COLUMN(AF4))&\":af\"& (         


        
1条回答
  •  醉话见心
    2021-01-29 11:04

    You can't return an Empty Cell, as a cell with a formula in it is not empty. You will get a default value of 0 instead.

    You can, however, return an empty string, "": =IF(ISBLANK(A1),"",A1)

    0 讨论(0)
提交回复
热议问题