WorksheetsExcel IF and IF nested Functions/Formulas
Total questions: 27
Worksheet time: 14mins
How can you express "If A1 is equal to B1 and B1 is equal to C1, then 'Yes'" using the IF function in Excel?
=IF(A1=B1, 'Yes', '')
=IF(A1=B1, 'No', '')
=IF(AND(A1=B1, B1=C1), 'Yes', '')
=IF(A1=B1, 'True', '')
What does the value_if_false argument in the IF function represent?
The value that will be returned if the logical test evaluates to FALSE.
The value that will be returned if the logical test evaluates to NULL.
The value that will be returned if the logical test evaluates to TRUE.
The value that will be returned if the logical test evaluates to ERROR.
What is a Nested IF statement in Excel?
A nested IF statement in Excel is a feature that allows you to create charts within a single formula.
A nested IF statement in Excel is a function that allows you to sort data within a single formula.
A nested IF statement in Excel is a formula that allows you to perform mathematical calculations within a single formula.
A nested IF statement in Excel is a formula that allows you to perform multiple logical tests within a single formula.
What is the basic syntax of the IF function in Excel?
=IF(logical_test, value_if_true, value_if_false)
=IF(logical_test; value_if_true; value_if_false)
=IF(logical_test, value_if_true, value_if_false, value_if_another_false)
=IF(logical_test, value_if_true)
