EXcel表格中if函数如何用
IF函数有三个参数,语法如下:
=IF(条件判断, 结果为真返回值, 结果为假返回值)
第一参数是条件判断,比如说“A1="百度"”或“21>37”这种,结果返回TRUE或FALSE。如果判断返回TRUE那么IF函数返回值是第二参数,否则返回第三参数。
Excel自带解释:
IF function in Excel
SYNTAX : IF(Something is True, then do this, otherwise do this)
Example: =IF(A1EXPLANATION : If the value in A1 is less than the value in B1, the value "OK" is returned, otherwise return a 0.
The IF function in Excel returns one value if a condition is true and another value if it's false. You can use up to 64 additional IF functions inside an IF function. Excel has other functions that can be used to analyze your data based on a condition like the COUNTIF or COUNTIFS worksheet functions.
例题:
公式1
=IF(A2<=100,"预算内","超出预算")
公式说明:
如果上面的数字小于等于 100,则公式将显示“预算内”。否则,公式显示“超出预算”。
公式2
=IF(A2=100,SUM(B5:B15),"")
公式说明:
如果上面数字为 100,则计算单元格区域 B5:B15的和,否则返回空文本。