Coupler.io Blog

How to Convert Excel Rows to Columns or Excel Columns to Rows?

convert rows to columns in Excel

Do you have some values arranged as rows in your workbook, and do you want to convert text in rows to columns in Excel like this?

In Excel, you can do this manually or automatically in multiple ways depending on your purpose. Read on to get all the details and choose the best solution for yourself. 

What are the key options to switch rows and columns in Excel

There are a few options to convert rows to columns in Excel:

Let’s check out each option so you can choose the one that suits you.

How to convert rows into columns in Excel manually

As an alternative, you can use the Paste Special option and mark Transpose using its menu. 

It works the same if you need to convert columns to rows in Excel.

Excel Transpose pasting is the best way to convert rows to columns or columns to rows. However, it’s only good for a one-time conversion of small to medium numbers of rows both on the Excel desktop and online.

Can I convert multiple rows to columns in Excel from another workbook?

The method above will work well if you want to convert rows to columns in Excel between different workbooks using Excel desktop. You need to have both spreadsheets open and do the copying and pasting as described. 

However, in Excel Online, this won’t work for different workbooks. The Paste Transpose option is not available. 

Therefore, in this case, it’s better to use the Excel TRANSPOSE function to turn columns to rows and vice versa.

How to convert columns to rows in Excel with TRANSPOSE 

TRANSPOSE is the Excel function that allows you to switch rows and columns in Excel. Here is its syntax:

=TRANSPOSE(array)

One of the main benefits of TRANSPOSE is that it links the converted columns/rows with the source rows/columns. So, if the values in the rows change, the same changes will be made in the converted columns. 

Let’s check out a few examples of how you can convert a row to column in Excel.

Example of TRANSPOSE formula to convert multiple rows to columns in Excel desktop

TRANSPOSE is an array formula, which means that you’ll need to select a number of cells in the columns that correspond to the number of cells in the rows to be converted. Once you do this, press Ctrl+Shift+Enter to get Excel rows to columns.

=TRANSPOSE(A1:J2)

Fortunately, you don’t have to go through this procedure in Excel Online if you need to rotate Excel columns to rows and backward.

Formula example to rotate row to column in Excel Online

You can simply insert your TRANSPOSE formula in a cell and hit enter. This will turn Excel rows to columns right away without any additional button combinations.

Excel TRANSPOSE multiple rows in a group to columns between different workbooks

We promised to demonstrate how you can use TRANSPOSE to rotate column to row in Excel between different workbooks. In Excel Online, you need to do the following:

=TRANSPOSE('https://d.docs.live.net/ec25d9990d879c55/Docs/Convert rows to columns/[dataset.xlsx]dataset'!A1:D12)

You can follow the same logic for rotating Excel rows to columns between workbooks in Excel desktop.

TRANSPOSE alternative to change row to column in Excel

TRANSPOSE is not the only function you can use to change rows to columns in Excel. A combination of INDIRECT and ADDRESS functions can be considered as an alternative. However,  the flow to convert Excel columns to rows using this formula is much trickier. Let’s check it out in the following example.

Convert text in columns to rows in Excel

If you have a set of columns with the first cell A1, the following formula will allow you to convert columns to rows in Excel.

=INDIRECT(ADDRESS(COLUMN(A1),ROW(A1)))

But where are the rows, you may ask! Well, first you need to drag this formula down if you are converting multiple columns to rows. Then drag it to the right – you’ll get a converted column to row in Excel.

NOTE: Use this Excel formula only to convert data in Excel columns to rows starting with A1 cell. If your columns start from another cell, check out the next section.

Excel data in columns to rows using INDIRECT+ADDRESS from other cells

To convert columns to rows in Excel with INDIRECT+ADDRESS formulas from not A1 cell only, use the following formula:

=INDIRECT(ADDRESS(COLUMN(first_cell) - COLUMN($first_cell) + ROW($first_cell), ROW(first_cell) - ROW($first_cell) + COLUMN($first_cell)))

Here is an example of how to convert Excel data in columns to rows:

=INDIRECT(ADDRESS(COLUMN(C5) - COLUMN($C$5) + ROW($C$5), ROW(C5) - ROW($C$5) + COLUMN($C$5)))

Again, you’ll need to drag the formula down and to the right to populate the rest of the cells.

Convert Excel columns to rows using Power Query 

Power Query is another powerful tool available for Excel users. We wrote a separate Power Query Tutorial, so feel free to check it out. 

Meanwhile, you can use Power Query to transpose rows to columns. To do this, go to the Data tab, and create a query from table. 

Power Query alternative to load data to Excel from cloud sources

With Power Query, you can extract, transform, and load data from databases and specific sources to Excel. However, the number of these sources is limited. So, you’ll need to search for alternative connectors or add-ins to pull data from Google Analytics, Facebook Ads, QuickBooks, and many other apps. Fortunately, there is Coupler.io!

It is a reporting automation platform to turn raw data into simple reports. Coupler.io supports 60+ Excel integrations, including marketing apps, project management tools, accounting software, data warehouses, etc. Here’s a quick overview of how it works:

1. Connect a data source you want to load data from. Choose your source app right away and click Proceed to get started for free with no credit card required. 

2. Transform your data before loading it to Excel. You can rename columns, apply filters, and add additional columns using formulas.

3. Choose the Excel workbook to load your data and set up automatic data refresh. This will automate data exports on a schedule.

In addition to data exports, Coupler.io offers ready-to-use dashboard templates designed in Power BI, Looker Studio, Google Sheets, and Tableau. 

Import data to Excel with Coupler.io

Get started for free

Convert rows to columns in Excel VBA 

VBA is another method to switch rows and columns in Excel automatically or dynamically.

VBA macro script to convert multiple rows to columns in Excel

Sub TransposeColumnsRows()
    Dim SourceRange As Range
    Dim DestRange As Range
 
    Set SourceRange = Application.InputBox(Prompt:="Please select the range to transpose", Title:="Transpose Rows to Columns", Type:=8)
    Set DestRange = Application.InputBox(Prompt:="Select the upper left cell of the destination range", Title:="Transpose Rows to Columns", Type:=8)
 
    SourceRange.Copy
    DestRange.Select
    Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=True
    Application.CutCopyMode = False
 
End Sub

Sub RowsToColumns()
    Dim SourceRange As Range
    Dim DestRange As Range
 
    Set SourceRange = Application.InputBox(Prompt:="Select the array to rotate", Title:="Convert Rows to Columns", Type:=8)
    Set DestRange = Application.InputBox(Prompt:="Select the cell to insert the rotated columns", Title:="Convert Rows to Columns", Type:=8)
 
    SourceRange.Copy
    DestRange.Select
    Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=True
    Application.CutCopyMode = False
 
End Sub

Error message when trying to convert rows to columns in Excel

To wrap up with converting Excel data in columns to rows, let’s review the typical error messages you can face during the flow.

Overlap error when converting column to row in Excel

The overlap error occurs when you’re trying to paste the transposed range into the area of the copied range. Please avoid doing this.

Wrong data type error when converting Excel rows to columns

You may see this #VALUE! error when you implement the TRANSPOSE formula in Excel desktop without pressing Ctrl+Shift+Enter. 

Other errors may be caused by typos or other misprints in the formulas you use to convert groups of data from rows to columns in Excel. Always double-check the syntax before pressing Enter or Ctrl+Shift+Enter ?. Good luck with your data!

Exit mobile version