EXCEL FUNCTIONS

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

1/13

encourage image

There's no tags or description

Looks like no tags are added yet.

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

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

SUM(_)

ADDITION of numbers

2
New cards

AVERAGE(_)

Finds MEAN / AVERAGE of numbers

3
New cards

COUNT(_)

Counts amount of cells that contain NUMBERS

4
New cards

MAX(_)

Finds LARGEST value

5
New cards

MIN(_)

Finds SMALLEST value

6
New cards

SUMIF(range, criteria, [sum_range])

ADDS values together under a CONDITION

EX. SUMIF(D2:D36, “>=18”, E2:E36)

  • Add together pulse rate of only those who are equal and older than 18

7
New cards

AVERAGEIF(range, criteria, [sum_range])

Calculates MEAN / AVERAGE of values under a CONDITION

EX. AVERAGEIF(D2:D36, “>=18”, E2:E36)

8
New cards

COUNTIF(range, criteria)

COUNTS number of cells under ONE condition

EX. COUNTIF(Data, “>=70”) - COUNTIF(Data, “<=109”)

  • counts number of cells between 70-109

9
New cards

COUNTIFS(range1, criteria1, range2, criteria2, …)

Count cells that meet MULTIPLE conditions

EX. COUNTIFS(Data, “>=70”, Data, “<=109”)

10
New cards

MAXIF(range, criteria)

Calculates MAX of values under a CONDITION

11
New cards

MINIF(range, criteria)

Calculates MIN of values under a CONDITION

12
New cards

LOOKUP(lookup_value, lookup_range, [result_range])

A function that searches for a value in a table and returns corresponding data

  • LOOKUP_VALUE: what you are searching for (e.g., student ID)

  • LOOKUP_RANGE: single row or column with data in ASCENDING order that the function searches

  • RESULT_RANGE: if value matches with one of the ranges in lookup_range

    • the function returns matching data stored in result_range

13
New cards

VLOOKUP(lookup_range, table_array, col_index_number, range_lookup)

a VERTICAL lookup that searches the FIRST / LEFT column for a value and returns a matching value from a specified column in the same row

  • LOOKUP_VALUE: what you are searching for (e.g., student ID)

  • TABLE_ARRAY: table containing all the data

  • COL_INDEX_NUMBER: column that contains answer / information

  • RANGE_LOOKUP: true or false

    • TRUE = approx | FALSE = exact

14
New cards

IF(logical_test, value_if_true, value_if_false)

Checks a condition, returns one result if TRUE and another if FALSE

EX. IF(E3<76, “Good”, IF(E3<91, “Average”, IF(E3>90, “Poor”)))