TRANSPOSE

Office Components Spreadsheet Function

Show All

TRANSPOSE

See Also

Returns a vertical range of cells as a horizontal range, or vice versa. TRANSPOSE must be entered as an array formula in a range that has the same number of rows and columns, respectively, as an array has columns and rows. Use TRANSPOSE to shift the vertical and horizontal orientation of an array on a spreadsheet.

Syntax

TRANSPOSE(array)

Array   is an array or range of cells on a spreadsheet that you want to transpose. The transpose of an array is created by using the first row of the array as the first column of the new array, the second row of the array as the second column of the new array, and so on.

Example 1

The example may be easier to understand if you copy it to a blank spreadsheet.

How?

Data Data Data
1 2 3
Formula Description (Result)
=TRANSPOSE($A$2:$C$2) Value from first column (1)
  Value from second column (2)
  Value from third column (3)

Note   The formula in the example must be entered as an array formula. After copying the example to a blank spreadsheet, select the range A4:A6 starting with the formula cell. Press F2, and then press CTRL+SHIFT+ENTER. If the formula is not entered as an array formula, the single result is 1.

Example 2

Some functions, such as LINEST, return horizontal arrays. LINEST returns a horizontal array of the slope and Y-intercept for a line. The following formula returns a vertical array of the slope and Y-intercept from LINEST.

The example may be easier to understand if you copy it to a blank spreadsheet.

How?

Known y Known x
1 0
9 4
5 2
7 3
Formula Description (Result)
=TRANSPOSE(LINEST(A2:A5,B2:B5,,FALSE)) Slope (2)
  Y-intercept (1)

Note   The formula in the example must be entered as an array formula. After copying the example to a blank spreadsheet, select the range A7:A8 starting with the formula cell. Press F2, and then press CTRL+SHIFT+ENTER. If the formula is not entered as an array formula, the single result is 2.