Transpose row to column in Excel and Google Sheets

{=TRANSPOSE(A2:A3)} // doesn't ignore blanks

{=TRANSPOSE(FILTER(A2:A6, A2:A6<>""))} // ignore blanks

A2:A3 & A2:A6 = Ranges

ArrayFormula use "Ctrl+Shift+Enter" for both formulas

Check below for a detailed explanation with pictures and how to use formulas in Excel and Google Sheets.

Transpose row to column in Excel

How to transpose row to column in Excel?
Transpose row to column in Excel

TRANSPOSE ROW TO COLUMN — EXCEL FORMULA AND EXAMPLE

{=TRANSPOSE(A2:A3)} // doesn't ignore blanks

{=TRANSPOSE(FILTER(A2:A6, A2:A6<>""))} // ignore blanks

💡 ArrayFormula use "Ctrl+Shift+Enter" for both formulas

Transpose row to column in Google Sheets

How to transpose row to column in Google Sheets?
Transpose row to column in Google Sheets

TRANSPOSE ROW TO COLUMN — GOOGLE SHEETS FORMULA AND EXAMPLE

=TRANSPOSE(A2:A3) // doesn't ignore blanks

=TRANSPOSE(FILTER(A2:A6, A2:A6<>"")) // ignore blanks