Parameter List
Syntax
IF(condition, value_if_true,
[value_if_false]
)condition
An expression or reference to a cell containing an expression that equates to TRUE
or FALSE
. For example: 5>4
or A1="Spreadsheets"
.
value_if_true
The value to return if condition
is TRUE
. For example: "It's bigger"
.
[optional] value_if_false
The value to return if condition
is FALSE
. For example: "It's smaller"
.