IF FUNCTION Flashcards

1
Q

This functions performs a comparison between two values.
Evaluates if the supplied comdition satisfies and then returns an output value.

A

IF FUNCTION

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Syntax of IF Function

A

=IF(logical_test, value_if_true, value_if_false)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the first thing you MUST do when typing an Excel formula?

A

Always add an = sign

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The first and mandatory argument of the IF function because it helps us specify the condition to be tested or evaluate as either TRUE or FALSE.

A

logical_test

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

We need to return as output when “TRUE”.

A

value_if_true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

We need to return as output when “FALSE”.

A

value_if_false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which is the correct formula that represents the IF function with no mistakes.
A. =IF(A1=B2, TRUE FALSE)
B. =IF(A1=B2,”TRUE”,”FALSE”)
C. =IF(A1=B2,TRUE,FALSE)
D. NONE OF THE ABOVE

A

B.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Logical Operators used in IF function

A

= Equal
< Less than
<= Less than or equal to
> Greater than
>= Greater than or equal to
<> Not equal to

How well did you know this?
1
Not at all
2
3
4
5
Perfectly