Excel logic operation function

Excel logic operation function

1.FALSE and use TRUE

Table screened salary> 6, gender as male, age> 28 meet at least two of these three conditions data

1.依次使用:=C2>6、=D2="男"、=E2>28
2.对的得到的FALSE或TRUE进行相加:=F2+G2+H2
3.筛选出和值大于等于2的数据

2.IF(logical_test, value_if_true, [value_if_false])

logical_test condition, value_if_true represents a value satisfying the condition shown, value_if_false value shown represents the condition is not satisfied

Set the score less than 60 points fail, otherwise it is set to qualified

=IF(A2<=60,"不及格","合格")
根据分数划分等级
=IF(E2<60,"D",IF(E2<80,"C",IF(E2<90,"B","A")))

3.ISNUMBER

To determine whether the numbers

4.ISERROR

Determine whether the error

Guess you like

Origin www.cnblogs.com/notfind/p/11615568.html