If functions Flashcards

1
Q

if

A

allows you to make logical comparisons between a value and what you expect.

For example, =IF(C2=”Yes”,1,2) says IF(C2 = Yes, then return a 1, otherwise return a 2).

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

10

iferror

A

IFERROR(value, value_if_error)

The IFERROR function syntax has the following arguments:

value Required. The argument that is checked for an error.

value_if_error Required. The value to return if the formula evaluates to an error. The following error types are evaluated: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!.

IFERROR returns a value you specify if a formula evaluates to an error; otherwise, it returns the result of the formula.

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

4

sumifs formula

A

SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], …)

if you want to sum cells that have the same root but different variations (amazon eu, amazon US, amazon, etc.), use the a cell reference with “amazon” in it and then add “*” to indicate that no matter what comes after, it gets added in

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

ifs

A

The IFS function checks whether one or more conditions are met, and returns a value that corresponds to the first TRUE condition. IFS can take the place of multiple nested IF statements, and is much easier to read with multiple conditions.

=IFS([Something is True1, Value if True1,Something is True2,Value if True2,Something is True3,Value if True3)

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

nested ifs

A

AND – =IF(AND(Something is True, Something else is True), Value if True, Value if False)

OR – =IF(OR(Something is True, Something else is True), Value if True, Value if False)

NOT – =IF(NOT(Something is True), Value if True, Value if False)

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