if用于判断,countif用于数数
if(logical_test,value_is_true,value_is_false)
if(怎么样,则怎么样,否则怎么样)
if中if的嵌套
if(logical_teat,value_is_ture,if(logical_is_true,value_is_true,value_is_false))
if与and/or/not的配合使用
IF(AND(Something is True, Something else is True), Value if True, Value if False)
IF(OR(Something is True, Something else is True), Value if True, Value if False)
IF(NOT(Something is True), Value if True, Value if False)
countif()函数用于有条件的数数
countif(区间,条件)
countif只能数小于15位的字符串
如果字符串值大于15位,则
countif(区间,值&"*")
网友评论