write the general syntax of IF function
Answers
Answered by
191
Syntax: IF(test; value1; value2) where: test is or refers to a logical value or expression that returns a logical value (TRUE or FALSE). value1 is the value that is returned by the function if test yields TRUE
shree250:
hii
Answered by
7
General syntax of IF function:
=IF(logical_test, [value_if_true], [value_if_false])
The IF function is used to perform a logical check, and returns a value for the TRUE result, and another for the FALSE result.
Arguments:
- "logical_test" - This should be a value or logical expression required to be evaluated as TRUE or FALSE.
- "value_if_true" - The value of this argument will be returned when logical check evaluates to TRUE.
- "value_if_false" - The value of this argument will be returned when logical check evaluates to FALSE.
To know more
Explain the if function in Excel.
https://brainly.in/question/5667072
Write the general Syntex of IF function
https://brainly.in/question/12940796
Similar questions