excel midterm

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

1/37

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:31 PM on 4/11/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

38 Terms

1
New cards

=ADDRESS( ??? )

row, column, [absolute / relative cell reference format]

  • 1 → absolute reference ($C$5)

  • 2 → absolute row, relative column (C$5)

  • 3 → relative row, absolute column ($C5)

  • 4 → relative reference (C5)

2
New cards

what does ADDRESS return

returns cell address in text format

3
New cards

=INDIRECT ( ??? )

text in cell reference form

4
New cards

what does INDIRECT return

returns what the cell it’s referencing references

5
New cards

=ROW(cell reference)

returns row

6
New cards

=COLUMN(cell reference)

returns column

7
New cards

=INDEX( ??? )

cell reference range, row, column

8
New cards

what does INDEX return

returns cell value of target cell y rows down and x columns right of cell range

9
New cards

=OFFSET( ??? )

cell reference, rows, columns, height, width

10
New cards

=IF( ??? )

logical comparison, return value if TRUE, return value if FALSE

11
New cards

=IFS( ??? )

logical comparison 1, return value if its TRUE, logical comparison 2, return value if its TRUE, etc.

12
New cards

=SWITCH( ??? )

target value cell, match value 1, replace value 1, match value 2, replace value 2, etc.

13
New cards

=COUNT( ??? )

value / cell reference / cell reference range

14
New cards

what’s the difference between COUNT and COUNTA

COUNT only returns the number of cells that contain numbers

COUNTA returns the number of cells that include everything (is not empty)

15
New cards

how does AVERAGEA deal with non-numeric input

indirectly inputted text as 0

false as 0

true as 1

16
New cards

=LARGE( ??? ) / =SMALL( ??? )

cell reference range, number / k

17
New cards

what does LARGE return

returns the k-th largest number

18
New cards

=RANK( ??? )

number, cell reference range to list of numbers, [0 / non-0]

  • 0 → descending

  • non-0 → ascending

19
New cards

=ROUND( ??? )

value / cell reference, number (k)

20
New cards

what’s the difference between ROUND and MROUND

ROUND rounds to the k-th digit after the decimal point

MROUND rounds to the nearest multiple of k

21
New cards

=RANDBETWEEN( ??? )

value / cell reference / x, value / cell reference / y

  • lower boundary (x) rounds larger

  • upper boundary (y) rounds smaller

    • will return the lower boundary if y > x

22
New cards

text, number, and logical value — what’s the greatest

logical value (true > false) > text > number

23
New cards

=COUNTIF( ??? )

cell reference range, criteria (in text format)

24
New cards

*

wildcard → represents one or more consecutive text characters

25
New cards

?

represents a single character

26
New cards

~ *

~ returns the actual character

27
New cards

how does COUNTIF convert data

into most likely data

  • e.g., “=TRUE” into TRUE (logical value) — will not match TRUE (text)

28
New cards

=COUNTIFS( ??? )

cell reference range 1, criteria 1, cell reference range 2, criteria 2, etc

29
New cards

=SUMIF( ??? )

cell reference range, criteria, sum range

30
New cards

=SEARCH( ??? )

text, value / cell reference

31
New cards

what does SEARCH return

returns the location within the value / cell reference

32
New cards

=VLOOKUP( ??? )

lookup value, data range, return column number, match method

  • FALSE → exact match

  • TRUE → approximate match

33
New cards

=LOOKUP( ??? )

lookup value, single row / column range for lookup value, single row / column for return value

34
New cards

=XLOOKUP( ??? )

lookup value, single row / column for lookup value, single row / column for return value, [return value if no matches], [match method], search method]

  • 4 match methods (exact, almost exact, wildcards)

  • 4 search methods (start from first / last cell or binary search)

35
New cards

=MATCH( ??? )

lookup value, data range, match method

  • data range is single row / column

  • 3 match methods

36
New cards

match and index

INDEX(range, MATCH(…), 1)

37
New cards

=CHOOSE( ??? )

index number k, value / cell reference / cell reference range 1, etc.

38
New cards

what does CHOOSE return

return the k-th value / cell reference / cell reference range