Transpose data along with header row.

Anas_Raza

Board Regular
Joined
Dec 18, 2013
Messages
60
I want to transpose data (shifting data from row to colum) but I wants header row along with every colum (while I have transposed data ).
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
This macro assumes that your data is in Sheet1 and the transposed data will be place in Sheet2. Change the sheet names kin the code to suit your needs.
Code:
Sub transposeRows()
    Application.ScreenUpdating = False
    Dim x As Long, lastRow As Long, lCol1 As Long, lCol2 As Long
    lastRow = Sheets("Sheet1").Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    lCol1 = Sheets("Sheet1").Cells(1, Sheets("Sheet1").Columns.Count).End(xlToLeft).Column
    For x = 2 To lastRow
        lCol2 = Sheets("Sheet2").Cells(1, Sheets("Sheet1").Columns.Count).End(xlToLeft).Column
        Cells(1, 1).Resize(, lCol1).Copy
        Sheets("Sheet2").Cells(1, lCol2 + 1).PasteSpecial Transpose:=True
        Cells(x, 1).Resize(, lCol1).Copy
        Sheets("Sheet2").Cells(1, lCol2 + 2).PasteSpecial Transpose:=True
    Next x
    Sheets("Sheet2").Columns(1).Delete
    Application.CutCopyMode = False
    Application.ScreenUpdating = True
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top