All Functions
All Functions
MAX, MAXIFS
INT
COUNT: Counts the number of cells in a range that contain numbers, text, logical
values, or error values.
Syntax: =COUNT(range)
COUNTA: Counts the number of cells in a range that contain numbers, text, or logical
values (but not blank cells or error values).
Syntax: =COUNTA(range)
COUNTBLANK: Counts the number of blank cells in a range.
Syntax: =COUNTBLANK(range)
COUNTIF: Counts the number of cells in a range that meet a single condition.
Syntax: =COUNTIF(range, criteria)
COUNTIFS: Counts the number of cells in a range that meet multiple criteria.
Syntax: =COUNTIFS(criteria_range1, criteria1, [criteria_range2,
criteria2], ...)
IF, IFS
IF: Returns one value if a condition is true, and another value if the condition is false.
Syntax: =IF(logical_test, value_if_true, value_if_false)
IFS: Evaluates multiple conditions and returns the first corresponding value that is true.
Syntax: =IFS(condition1, value_if_true1, condition2, value_if_true2, ...)
ISERROR, IFERROR
MEDIAN, MODE
Median: Calculates the middle value in a data set when the data is ordered from least
to greatest.
Syntax: =MEDIAN(range)
Mode: Finds the most frequent value in a data set.
Syntax: =MODE(range)
LOOKUP :Finds a specific value in a single row or column and returns a corresponding
value from a different location in the same row or column.
Syntax: =LOOKUP(lookup_value, range, index)
HLOOKUP :Looks up a value in the leftmost column of a table and returns a value from
a different column in the same row.
Syntax: =HLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
VLOOKUP:Looks up a value in the leftmost column of a table and returns a value from
a different column in the same row.
VLOOKUP is similar to HLOOKUP, but it searches for data in columns.
Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
XLOOKUP: a more flexible lookup function that combines some of the best features of
VLOOKUP and HLOOKUP and offers additional functionalities.
Syntax: =XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found],
[match_mode], [search_mode])
MATCH, INDEX
UPPER, LOWER