标签: google-sheets
我的公式如下
=arrayformula(MIN(countif(F9:F,F9:F)))
,但不会跳过空白单元格。如何跳过空白单元格?
答案 0 :(得分:0)
首先过滤计数的单元格。
=arrayformula(min(countif(filter(F9:F, not(isblank(f9:f))),F9:F)))
说起min(countif())似乎是多余的,countif应该给你一个数字,这样min()不会改变任何东西。