logo
excelfunctions.org
bookmarks

CHOOSEROWS

Returns the specified rows from an array.

Lookup & ReferenceDynamic Arrays & LAMBDALookup & Matching EssentialsModern Excel Functions

What it does

Returns specific rows from an array or range, in the order specified.

Syntax

CHOOSEROWS(array, row_num1, [row_num2], ...)

Arguments

  • array(array) β€” The source array.
  • row_num1(number) β€” Row number to return (can be negative to count from end).

Examples

Pick Row 2

Extract the second row.

FORMULA
=CHOOSEROWS(A1:C3, 2)
RESULT
[Bob, West, 700]
SAMPLE DATA
ABC
1NameRegionSales
2AliceEast500
3BobWest700