Array Functions¶
TRANSPOSE¶
Converts rows to columns and vice versa.
A 3x3 range will be flipped so that rows become columns.
FLATTEN¶
Converts a multi-dimensional range into a single column.
UNIQUE¶
Returns unique values from a range, removing duplicates.
SORT¶
Sorts a range by a specified column.
Sorts by the 2nd column in ascending order. Use FALSE for descending.
SORTBY¶
Sorts a range by a separate sort-key range.
Sorts A1:B10 by column B in descending order (-1).
FILTER¶
Returns rows from a range that meet a condition.
Returns all rows where column B is greater than 50.
SEQUENCE¶
Generates a sequence of numbers.
=SEQUENCE(5, 1, 1, 2) produces 1, 3, 5, 7, 9 in a column.
ARRAYFORMULA¶
Applies a formula across a range, returning multiple results.
Multiplies each pair of cells and returns all results at once.