K201 Study guide for exam 3

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/14

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:32 AM on 3/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

What is the basic structure of an IF statement in Excel?

=IF(condition, value_if_true, value_if_false)

2
New cards

When would you use the AND function in an IF statement?

Use AND when all conditions must be true. Example: =IF(AND(A1>50, B1>50), 'Pass', 'Fail')

3
New cards

What does the OR function do in an IF statement?

Use OR when only one of the conditions needs to be true. Example: =IF(OR(A1>50, B1>50), 'Pass', 'Fail')

4
New cards

How does a combined IF statement with AND and OR work?

Example: =IF(AND(A1>30, OR(B1>=50, C1>=50)), 'Y', 'N'). This means A must be true and at least one of B or C must also be true.

5
New cards

What are the benefits of using the IFS function?

Use IFS for multiple outcomes, cleaner than nested IFs and it stops at the first TRUE condition.

6
New cards

Describe the XLOOKUP function.

=XLOOKUP(lookup_value, lookup_array, return_array). Use it when you want to find something and return related information.

7
New cards

What is the advantage of using INDEX + MATCH over VLOOKUP?

INDEX + MATCH is more flexible than VLOOKUP and can sometimes be required in exams.

8
New cards

What is a 2D lookup in Excel?

=INDEX(A1:G100, MATCH(value, column, 0), MATCH(header, row, 0). Use it when you need both row and column matches.

9
New cards

What formulas can you use to find the maximum, minimum, average, and total in a range?

=MAX(A1:A100), =MIN(A1:A100), =AVERAGE(A1:A100), =SUM(A1:A100). Use these for finding extremes or totals.

10
New cards

What common errors should you know in Excel?

N/A (Not found), #REF! (Broken reference), #DIV/0! (Dividing by zero).

11
New cards

Outline the steps for building logic in Excel formulas.

  1. Write conditions. 2. Ask if all required: use AND; just one needed: use OR. 3. Wrap in IF statement.
12
New cards

What is a nested IF statement? When would you use it?

=IF(A1>=90,'A', IF(A1>=80,'B', IF(A1>=70,'C','F'))). Use when multiple outputs are needed without using IFS.

13
New cards

How do you decide which function to use in Excel?

Use IF for 2 outcomes, IFS for multiple outcomes, AND when all conditions must be true, OR for one condition, XLOOKUP for table search, INDEX + MATCH for complex lookups, and MAX / MIN for highest/lowest.

14
New cards

What are some common test traps to avoid?

Using AND instead of OR, wrong order in IFS, forgetting TRUE default, mixing up row/column in INDEX, using * instead of comma.

15
New cards

What are some final memory tricks for Excel functions?

AND = strict, OR = flexible, IFS = ladder (top to down), INDEX/MATCH = coordinates, XLOOKUP = search + return.