Module 3A Excel Nested IF

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/23

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards

What is a Nested IF?

An IF function placed inside another IF function to handle more than 2 outcomes.

2
New cards

Why should you use a Nested IF if there’s more than 2 outcomes instead of a regular IF?

A normal IF only gives True/False. Nested IF allows 3+ categories.

3
New cards

When should you use a Nested IF? Ex. Loan decisions, grades, salary levels

When you need multiple conditions that produce different results (3 or more outcomes).

4
New cards

What are the 3 parts of an IF function?

Logical_Test, Value_IF_True, Value_IF_False

5
New cards

In a Nested IF, where do you place the second IF statement?

Inside the “value_if_false” section of the first IF.

6
New cards

Why doesn’t the last category in a Nested IF need another IF statement?

Because if all previous conditions are false, the last result is the only possible answer left.

7
New cards

Should you test the highest or lowest threshold first?

Highest first. Prevents lower conditions from being triggered incorrectly.

8
New cards

Write the Nested IF formula for the credit score example. > 780: credit approval, 700-799 is conditional loan approval, < 699 = denied

=IF(C8>=780,"Loan Approved",IF(C8>=700,"Conditional Loan Approval","Denied"))

9
New cards

What happens when the first condition in a Nested IF is TRUE?

Excel returns that value and stops checking further conditions.

10
New cards

What happens if a condition is written in the wrong order?

Excel may return wrong results even if the formula is typed correctly.

11
New cards

Write the Nested IF formula for the credit score example: ≥ 780 = Loan Approved
≥ 700 = Conditional Loan Approval
Else = Denied

=IF(C8>=780,"Loan Approved",IF(C8>=700,"Conditional Loan Approval","Denied"))

12
New cards

=IF(C8>=780,"Loan Approved",IF(C8>=700,"__________","Denied"))

Conditional Loan Approval

13
New cards

Write a Nested IF to return:
≥ 90 = A
≥ 80 = B
Else = C

=IF(A2>=90,"A",IF(A2>=80,"B","C"))

14
New cards

Create a Nested IF for delivery time:
≤ 2 days = “Fast”
≤ 5 days = “Normal”
Else = “Slow”

=IF(D2<=2,"Fast",IF(D2<=5,"Normal","Slow"))

15
New cards

Make a Nested IF for salary:
≥ 100,000 = “High”
≥ 70,000 = “Medium”
Else = “Low”

=IF(B2>=100000,"High",IF(B2>=70000,"Medium","Low"))

16
New cards

Find the mistake:
=IF(C8>=780,"Loan Approved",IF(C8>=700,"Conditional Loan Approval",Denied))

Missing  " “ around “Denied”.

17
New cards

What’s wrong with this formula? =IF(C8>=700,"Conditional Loan Approval",IF(C8>=780,"Loan Approved","Denied"))

Conditions are reversed; the higher value must be tested first

18
New cards

What Excel feature should you use to apply the Nested IF to multiple rows?

Autofill (drag the cell’s bottom-right corner)

19
New cards

Where can you edit an existing formula?

In the formula bar

20
New cards

True or False: All text outputs must be inside quotation marks in an IF function.

True

21
New cards

In one sentence, explain how Nested IF works.

Excel checks conditions in order; once one is true, it returns that result and stops.

22
New cards

If your Nested IF always returns the last value, what’s likely wrong?

The earlier conditions are incorrect or in the wrong order.

23
New cards

Why should you avoid writing too many Nested IFs if possible?

It becomes hard to read and increases the chance of logic mistakes.

24
New cards

4-Outcome Challenge:
≥ 3.7 = “Excellent”
≥ 3.3 = “Good”
≥ 3.0 = “Average”
Else = “Below Average”

=IF(C2>=3.7,"Excellent",IF(C2>=3.3,"Good",IF(C2>=3.0,"Average","Below Average")))