K201 Ch 11-17 Exam

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

1/52

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:35 AM on 3/31/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

53 Terms

1
New cards

What does the SUM function do?

Adds a range of numbers

2
New cards

What does the AVERAGE function do?

Calculates the mean of a range

3
New cards

What is a cell reference?

The location of a cell (ex: A1)

4
New cards

Difference between relative and absolute references?

Relative changes when copied (A1), Absolute stays fixed ($A$1)

5
New cards

What does the $ symbol do in a formula?

Locks a cell reference so it doesn’t change when copied

6
New cards

What is the difference between COUNT and COUNTA?

COUNT = counts numbers only, COUNTA = counts all non-empty cells

7
New cards

What is mixed cell referencing?

Locks only one part of a reference ($A1 locks column, A$1 locks row)

8
New cards

When should you use absolute references?

When a value (like a rate or constant) should stay the same in all formulas

9
New cards

What does =TODAY( ) do?

Returns the current date and updates automatically

10
New cards

What does CTRL + ; do?

Inserts the current date that does NOT change

11
New cards

What is the syntax of the DATEDIF function?

=DATEDIF(start_date, end_date, “unit”)

12
New cards

What units can DATED IF use?

“Y” = years, “M” = months, “D” = days

13
New cards

How do you calculate whole weeks between two dates?

Use: =INT(DATEDIF(A1, B1, “D”)/7)

14
New cards

What does the INT function do?

Rounds a number DOWN to the nearest whole number

15
New cards

What does the ROUND function do?

Rounds a number to a specified number of decimal places

16
New cards

Example of 3D referencing

=SUM(‘Sheet1:Shee4” !E6)

17
New cards

What does COUNTIFS do?

Counts cells that meet one or more conditions

18
New cards

What does SUMIFS do?

Adds values that meet specified conditions

19
New cards

When do you need quotation marks in formulas?

For text or logical conditions (ex: “IL”, “>=10”)

20
New cards

What is a named range?

A custom name for a cell or range used in formulas

21
New cards

How do you create named ranges from a table?

Select data → Formulas → Create from Selection → Top row

22
New cards

How do you calculate order quantity?

=MaxUnits - InStock

23
New cards

How do you prevent negative order quantites?

=MAX(H6-G6, 0)

24
New cards

What is a conditional aggregate function?

A function that calulates (count, sum, avg, etc.) based on conditions

25
New cards

What does TEXTBEFORE do?

Returns text before a specified delimiter

26
New cards

What does TEXTAFTER do?

Returns text after a specified delimiter

27
New cards

What does TEXTSPLIT do?

Splits text into multiple cells based on a delimiter

28
New cards

What do LEFT, RIGHT, and MID do?

Extract specific characters from text

29
New cards

What does TRIM do?

Removes extra spaces (except single spaces between words)

30
New cards

What does CLEAN do?

Removes non-printable characters

31
New cards

What does PROPER do?

Capitalizes the first letter of each word

32
New cards

How do you combine text in Excel?

Using & or CONCAT

33
New cards

What is Flash Fill?

A tool that automatically fills data based on patterns (Ctrl + E)

34
New cards

What does VLOOKUP do?

Searches down the left column and returns a value from the same row to the right

35
New cards

What does the range_lookup argument control in VLOOKUP?

Whether the match is exact (FALSE) or approximate (TRUE)

36
New cards

What is a major limitation of VLOOKUP?

It can only look to the right of the lookup column

37
New cards

What does HLOOKUP do?

Searches across the top row and returns a value from below

38
New cards

What does the MATCH function return?

The position (index) of a value in a row or column

39
New cards

What match type is most commonly used in MATCH?

0 (exact match)

40
New cards

What does XLOOKUP do?

Finds a value in a range and returns a corresponding value from another range

41
New cards

Why is XLOOKUP better than VLOOKUP?

It can look in any direction and doesn’t require column numbers

42
New cards

What does the INDEX function do?

Returns a value based on a specified row and column position

43
New cards

Why combine INDEX and MATCH?

To create a flexible lookup that works in any direction

44
New cards

What does the IF function do?

Returns one value if a condition is TRUE, another if FALSE

45
New cards

What is the syntax of IF?

IF(logical_test, value if true, value_if_false)

46
New cards

What is a logical_test?

A condition that evaluates to TRUE or FALSE using operators like =, >, <, >=, <=, <>

47
New cards

When do you use quotes in IF?

Use quotes for text ("Yes"), not for numbers (100)

48
New cards

When do you use AND?

When ALL conditions must be TRUE

49
New cards

When does AND return TRUE?

Only when all conditions are TRUE.

50
New cards

When do you use OR?

When at least ONE condition must be TRUE

51
New cards

When does OR return TRUE?

When any condition is TRUE

52
New cards

When do you use nested IF?

When there are more than 2 possible outcomes

53
New cards

How many IFs do you need?

Number of outputs − 1; Excel stops at first TRUE condition.