Count rows with not empty value

后端 未结 13 2424
梦毁少年i
梦毁少年i 2020-12-13 08:04

In a Google Spreadsheet: How can I count the rows of a given area that have a value? All hints about this I found up to now lead to formulas that do count the rows which hav

相关标签:
13条回答
  • 2020-12-13 08:40

    For me, none of the answers worked for ranges that include both virgin cells and cells that are empty based on a formula (e.g. =IF(1=2;"";""))

    What solved it for me is this:

    =COUNTA(FILTER(range, range <> ""))

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